-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "crypto-booking-app",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"lint": "eslint src",
"test": "rimraf .nyc_output && ./node_modules/.bin/nyc --reporter=text ./node_modules/mocha/bin/mocha test/**/*.spec.js --timeout 20000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windingtree/crypto-booking-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/windingtree/crypto-booking-app/issues"
},
"homepage": "https://github.com/windingtree/crypto-booking-app#readme",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-rate-limit": "^2.11.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^5.1.0",
"eslint-config-standard": "12.0.0-alpha.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rimraf": "^2.6.2"
},
"engines": {
"node": "10.6.0"
},
"nyc": {
"exclude": [
"scripts/",
"test/"
]
}
}