-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.58 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
{
"name": "chlu-collector",
"version": "0.2.3",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.6.0"
},
"author": {
"name": "Chlu",
"email": "[email protected]",
"url": "https://chlu.io"
},
"bugs": {
"url": "https://github.com/ChluNetwork/chlu-collector/issues"
},
"homepage": "https://github.com/ChluNetwork/chlu-collector/blob/master/README.md",
"repository": "https://github.com/ChluNetwork/chlu-collector.git",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "node src/bin.js",
"test": "mocha tests/**/*.test.js"
},
"bin": {
"chlu-service-node": "src/bin.js"
},
"dependencies": {
"chlu-ipfs-support": "ChluNetwork/chlu-ipfs-support#semver:~0.3.1",
"commander": "^2.15.1",
"libp2p-websocket-star-rendezvous": "~0.2.3",
"lodash": "^4.17.5"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.12.0",
"mocha": "^4.0.1",
"sinon": "^4.1.3"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"rules": {
"indent": [
"error",
4
],
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"no-console": 0,
"no-debugger": 1,
"no-var": 1,
"no-trailing-spaces": 0,
"eol-last": 0,
"no-underscore-dangle": 0,
"no-alert": 0,
"no-lone-blocks": 0
},
"globals": {}
}
}