-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 991 Bytes
/
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
{
"name": "anansi-acquire",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "node server.js",
"test": "nyc mocha",
"linterTest": "eslint ./",
"allTests": "npm test && npm run linterTest",
"stage": "git push https://git.heroku.com/stage-anansi-acquire.git master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/step-batch-7/anansi-acquire.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/step-batch-7/anansi-acquire/issues"
},
"homepage": "https://github.com/step-batch-7/anansi-acquire#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"sinon": "^9.0.0",
"supertest": "^4.0.2"
},
"dependencies": {
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"lodash": "^4.17.15",
"morgan": "^1.9.1"
}
}