forked from LiskArchive/lisk-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.65 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
122
123
124
125
126
127
{
"name": "lisk",
"version": "0.9.8",
"description": "Lisk blockchain application platform",
"author":
"Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "GPL-3.0",
"private": true,
"keywords": ["cryptocurrency", "blockchain", "lisk", "nodejs", "javascript"],
"homepage": "https://github.com/LiskHQ/lisk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk/issues"
},
"engines": {
"node": "=6.12.3",
"npm": "=3.10.10"
},
"main": "app.js",
"scripts": {
"start": "node app.js",
"console": "node scripts/console.js",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint --fix .",
"format":
"prettier --write \"./*.{js,json,md}\" \"{api,config,db,docs,helpers,logic,modules,schema,scripts,tasks,test}{,/**}/*.{js,json,md}\"",
"cover:fetch": "./node_modules/.bin/grunt exec:fetchCoverage --verbose",
"cover:report": "./node_modules/.bin/grunt coverageReport --verbose",
"test": "./node_modules/.bin/grunt",
"grunt": "./node_modules/.bin/grunt",
"mocha": "./node_modules/.bin/mocha",
"docs:build": "jsdoc -c docs/conf.json --verbose --pedantic",
"docs:serve": "./node_modules/.bin/http-server docs/jsdoc/",
"precommit": "lint-staged",
"check:dependencies": "./node_modules/.bin/snyk protect",
"prepush": "npm run lint && npm run check:dependencies",
"prepublishOnly": "npm run check:dependencies"
},
"dependencies": {
"async": "=2.4.1",
"bignumber.js": "=4.0.2",
"bluebird": "=3.5.1",
"body-parser": "=1.18.2",
"bytebuffer": "=5.0.1",
"change-case": "=3.0.1",
"colors": "=1.1.2",
"commander": "=2.9.0",
"compression": "=1.7.1",
"cors": "=2.8.3",
"debug": "=3.1.0",
"ejs": "=2.5.6",
"express": "=4.16.0",
"express-domain-middleware": "=0.1.0",
"express-query-int": "=1.0.1",
"express-rate-limit": "=2.8.0",
"extend": "=3.0.1",
"find": "=0.2.7",
"fs-extra": "=5.0.0",
"ip": "=1.1.5",
"istanbul-middleware": "=0.2.2",
"js-yaml": "=3.10.0",
"json-refs": "=3.0.3",
"json-schema": "=0.2.3",
"lodash": "=4.17.4",
"method-override": "=2.3.10",
"pg-monitor": "=0.9.0",
"pg-promise": "=8.2.1",
"popsicle": "=9.1.0",
"randomstring": "=1.1.5",
"redis": "=2.7.1",
"rimraf": "=2.6.1",
"semver": "=5.3.0",
"socket.io": "=2.0.3",
"socketcluster": "=10.0.1",
"socketcluster-client": "=10.1.1",
"sodium": "LiskHQ/node-sodium#895ac4482a56a34eba81205e43e0c859490fb99d",
"strftime": "=0.10.0",
"swagger-node-runner": "=0.7.3",
"sway": "=1.0.0",
"valid-url": "=1.0.9",
"validator": "=7.0.0",
"validator.js": "=2.0.3",
"wamp-socket-cluster": "=2.0.0-beta.1",
"z-schema": "=3.18.2"
},
"devDependencies": {
"bitcore-mnemonic": "=1.2.5",
"browserify-bignum": "=1.3.0-2",
"chai": "=4.0.2",
"chai-as-promised": "=7.1.1",
"chai-bignumber": "=2.0.0",
"co-mocha": "=1.2.1",
"coveralls": "=2.13.1",
"csv": "=1.1.1",
"eslint": "=4.16.0",
"eslint-config-airbnb-base": "=12.1.0",
"eslint-config-lisk-base": "=1.0.0",
"eslint-plugin-import": "=2.8.0",
"eslint-plugin-mocha": "=4.11.0",
"faker": "=4.1.0",
"grunt": "=1.0.1",
"grunt-exec": "=2.0.0",
"http-server": "=0.11.1",
"husky": "=0.14.3",
"istanbul": "=0.4.5",
"jsdoc": "=3.4.3",
"jsdox": "=0.4.10",
"lint-staged": "=6.1.0",
"lisk-js": "LiskHQ/lisk-js#lisk-elements-1.0.0-RC2",
"mocha": "=4.0.1",
"moment": "=2.18.1",
"node-mocks-http": "^1.6.6",
"pm2": "=2.4.6",
"prettier": "=1.10.2",
"rewire": "=2.5.2",
"rx": "=4.1.0",
"sinon": "=3.2.1",
"sinon-chai": "=2.14.0",
"snyk": "^1.69.6",
"stampit": "=4.0.2",
"supertest": "=3.0.0"
},
"snyk": true
}