-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 KB
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
{
"name": "@syscoin/syscoin-nodejs",
"version": "3.0.0-beta",
"description": "",
"scripts": {
"start": "node .",
"startd": "pm2 start node . $CONFIG --name 'sys-api-server'",
"test": "mocha **/test/*.test.js --reporter spec --timeout 10000 --colors --exit",
"isolated": "APIRUNMODE=isolated node .",
"integrated": "APIRUNMODE=integrated node .",
"windows-isolated": "set APIRUNMODE=isolated&& node .",
"windows-integrated": "set APIRUNMODE=integrated&& node .",
"lint": "eslint --ignore-path .jshintignore *.js",
"lint-fix": "eslint --fix . --ignore-path .jshintignore",
"precommit": "npm run lint",
"prepush": "npm run lint && npm run test"
},
"main": "index.js",
"keywords": [
"swagger"
],
"license": "MIT",
"private": false,
"dependencies": {
"@syscoin/syscoin-core": "^3.0.0-beta",
"assert": "^1.4.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"connect": "^3.6.5",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"finalhandler": "^1.1.0",
"he": "^1.1.1",
"js-yaml": "^3.10.0",
"jshashes": "^1.0.7",
"jsonwebtoken": "^7.4.3",
"mocha": "^5.2.0",
"mongodb": "^2.2.33",
"q": "^1.5.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"serve-static": "^1.13.1",
"swagger-tools": "0.10.1",
"syscoin-core": "^1.2.8"
},
"bugs": {
"url": "https://github.com/syscoin/syscoin-api/issues"
},
"homepage": "https://github.com/syscoin/syscoin-api",
"devDependencies": {
"husky": "^0.10.1",
"eslint": "^5.0.1"
}
}