This repository was archived by the owner on Oct 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.89 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.89 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
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
{
"name": "cubic-api",
"version": "0.0.0-development",
"description": "API node for cubic.",
"main": "index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha --exit -s 30000 --timeout 30000 test/server.js test/requests.js test/middleware.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nexus-devs/cubic-api"
},
"author": "Kaptard",
"license": "MIT",
"dependencies": {
"@polka/send-type": "^0.5.0",
"async-middleware-stack": "^1.0.1",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cookies": "^0.7.2",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"mime": "^2.3.1",
"polka": "^0.5.1",
"primus": "^7.2.3",
"primus-redis-rooms": "^0.3.2",
"redis": "^2.8.0",
"rolling-rate-limiter": "^0.1.11",
"ws": "^6.1.0"
},
"peerDependencies": {
"cubic-client": "^2.0.1"
},
"devDependencies": {
"cubic-api": "^2.0.1",
"cubic-auth": "^2.0.0",
"cubic-client": "^2.0.1",
"cubic-core": "^2.0.1",
"cubic-loader": "^1.2.1",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"semantic-release": "^15.9.17"
},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"scope": "README",
"release": "patch"
},
{
"type": "breaking",
"release": "major"
},
{
"type": "major",
"release": "major"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
}
}