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
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
{
"name": "cubic-client",
"version": "0.0.0-development",
"description": "Cubic API client.",
"main": "./src/node/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cubic-js/cubic-client"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ignore-pattern browser.js --ignore-pattern browser.js.map .",
"build": "node_modules/.bin/rollup -m -c build/rollup.config.js",
"test": "mocha --exit -s 40000 --timeout 40000 test/connection.js test/requests.js test/pubsub.js test/auth.js"
},
"author": "Kaptard",
"license": "MIT",
"dependencies": {
"async-delay-queue": "^1.0.11",
"ws": "^6.1.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babelrc-rollup": "^3.0.0",
"cubic-api": "^2.0.1",
"cubic-auth": "^2.0.0",
"cubic-client": "^2.0.0",
"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",
"rollup": "^0.66.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"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"
]
}
}
}
}