This repository has been 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
/
package.json
71 lines (71 loc) · 1.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
{
"name": "cubic-core",
"version": "0.0.0-development",
"description": "Core node for cubic.",
"main": "index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha --exit -s 30000 --timeout 30000",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/nexus-devs/cubic-core"
},
"author": "Kaptard",
"license": "MIT",
"dependencies": {
"async-middleware-stack": "^1.0.1",
"lodash": "^4.17.11",
"mongodb": "^3.1.6",
"redis": "^2.8.0",
"rolling-rate-limiter": "^0.1.11"
},
"peerDependencies": {
"cubic-client": "^2.0.0"
},
"devDependencies": {
"cubic-api": "^2.0.0",
"cubic-auth": "^1.1.1",
"cubic-client": "^2.0.0",
"cubic-core": "^2.0.0",
"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"
]
}
}
}
}