-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
121 lines (121 loc) · 3.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "adamant",
"version": "0.8.4",
"description": "ADAMANT Blockchain Node",
"private": true,
"scripts": {
"start": "node app.js",
"start:testnet": "node app.js --config test/config.json --genesis test/genesisBlock.json",
"test:full": "npx grunt test --verbose",
"test:single": "npx mocha --trace-uncaught",
"test:unit": "npx mocha test/unit/* --trace-uncaught",
"test:unit:fast": "npx mocha test/unit/* --exclude test/unit/logic/blockReward.js --exclude test/unit/sql/blockRewards.js --trace-uncaught",
"test:api": "npx mocha test/api/* --trace-uncaught",
"test:fast": "npx mocha --exclude test/unit/sql/blockRewards.js --exclude test/api/delegates.js --exclude test/api/peer.transactions.stress.js --exclude test/api/peer.transactions.votes.js test/unit/**/* test/api/**/*",
"test:all": "npx mocha test/unit/**/* test/api/**/*",
"eslint": "npx grunt eslint-nofix --verbose",
"eslint:file": "npx eslint -f visualstudio",
"eslint:fix": "npx eslint -f visualstudio --fix",
"eslint:fixrule": "npx eslint -f visualstudio --no-eslintrc --fix --env browser,node,es2021,commonjs --parser-options=ecmaVersion:12 --rule",
"fetchCoverage": "npx grunt exec:fetchCoverage --verbose",
"jsdoc": "npx jsdoc -c docs/conf.json --verbose --pedantic",
"server-docs": "npx jsdoc && npx http-server docs/jsdoc/"
},
"keywords": [
"adm",
"adamant",
"blockchain",
"messenger",
"messaging",
"decentralization",
"anonymity",
"tor",
"privacy",
"security",
"encryption",
"crypto",
"cryptocurrency",
"dpos"
],
"author": "ADAMANT Foundation <[email protected]>, ADAMANT Tech Labs <[email protected]>, Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"async": "=3.2.6",
"axios": "^1.7.7",
"bignumber.js": "=9.1.2",
"bitcore-mnemonic": "=10.5.3",
"body-parser": "=1.20.3",
"bytebuffer": "=5.0.1",
"change-case": "^4.1.2",
"colors": "=1.4.0",
"commander": "=12.1.0",
"compression": "=1.7.5",
"cors": "=2.8.5",
"ejs": "=3.1.10",
"execa": "^5.1.1",
"express": "=4.21.1",
"express-domain-middleware": "=0.1.0",
"express-query-int": "=3.0.0",
"express-rate-limit": "=7.4.1",
"express-slow-down": "2.0.3",
"extend": "=3.0.2",
"js-nacl": "^1.4.0",
"json-schema": "=0.4.0",
"knex": "^3.1.0",
"lodash": "=4.17.21",
"method-override": "=3.0.0",
"neoip": "^3.0.1",
"npm": "=10.9.1",
"pg-monitor": "=2.1.0",
"pg-native": "=3.2.0",
"pg-promise": "=11.10.2",
"randomstring": "=1.3.0",
"redis": "=4.7.0",
"rimraf": "=6.0.1",
"semver": "=7.6.3",
"socket.io": "^4.8.1",
"sodium": "^3.0.2",
"sodium-browserify-tweetnacl": "*",
"strftime": "=0.10.3",
"unzipper": "^0.12.3",
"valid-url": "=1.0.9",
"validator.js": "=2.0.4",
"z-schema": "=6.0.2"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-bignumber": "^3.1.0",
"eslint-config-google": "^0.14.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-jsdoc": "^50.5.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-obfuscator": "^8.0.0",
"grunt-eslint": "^25.0.0",
"grunt-exec": "^3.0.0",
"jsdoc": "^4.0.4",
"mocha": "^10.8.2",
"moment": "^2.30.1",
"nyc": "^17.1.0",
"nyc-middleware": "^1.0.4",
"sinon": "^19.0.2",
"supertest": "^7.0.0"
},
"overrides": {
"grunt-contrib-obfuscator": {
"javascript-obfuscator": "^4.0.0"
}
},
"config": {
"minVersion": ">=0.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adamant-im/adamant.git"
},
"bugs": {
"url": "https://github.com/Adamant-im/adamant/issues"
},
"homepage": "https://github.com/Adamant-im/adamant#readme"
}