-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "chlu-marketplace-js",
"description": "Chlu Marketplace library and server application",
"version": "0.4.1",
"main": "src/index.js",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.6.0"
},
"repository": "https://github.com/ChluNetwork/chlu-marketplace-js.git",
"license": "MIT",
"author": {
"name": "Chlu",
"email": "[email protected]",
"url": "https://chlu.io"
},
"bugs": {
"url": "https://github.com/ChluNetwork/chlu-marketplace-js/issues"
},
"homepage": "https://github.com/ChluNetwork/chlu-marketplace-js/blob/master/README.md",
"bin": {
"chlu-marketplace": "src/bin/index.js"
},
"scripts": {
"start": "node src/bin/index.js start",
"test": "mocha --opts tests/mocha.opts",
"test-watch": "mocha --opts tests/mocha.opts --watch",
"test-coverage": "nyc mocha --opts tests/mocha.opts",
"lint": "eslint src tests",
"docs": "documentation build src/marketplace.js -f html -o docs"
},
"nyc": {
"exclude": [
"tests"
]
},
"dependencies": {
"axios": "^0.18.0",
"chlu-ipfs-support": "ChluNetwork/chlu-ipfs-support#semver:~0.3.1",
"commander": "^2.15.0",
"cors": "^2.8.4",
"express": "^4.16.2",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"multihashes": "^0.4.13",
"rimraf": "^2.6.2",
"sequelize": "^4.35.1",
"sqlite3": "^3.1.13"
},
"devDependencies": {
"chai": "^4.1.2",
"documentation": "^6.1.0",
"eslint": "^4.18.1",
"libp2p-websocket-star-rendezvous": "~0.2.3",
"mocha": "^5.0.1",
"multihashing-async": "^0.4.8",
"nyc": "^11.4.1",
"sinon": "^4.4.2",
"supertest": "^3.0.0"
},
"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": {}
}
}