-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 904 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
{
"name": "startup-tape",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --inspect app.js",
"test": "npm run test:standard && npm run test:tape",
"test:standard": "standard --verbose | standard-tap",
"test:standard:fix": "standard --fix --verbose | standard-tap",
"test:tape": "mongo testdb --eval \"db.dropDatabase();\" && MONGODB_URL='mongodb://localhost/testdb' istanbul cover tape 'tests/**/*.js' | tap-notify | tap-dot"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"istanbul": "^0.4.5",
"nodemon": "^1.12.1",
"standard": "^10.0.3",
"standard-tap": "^1.0.1",
"supertest": "^3.0.0",
"tap-dot": "^1.0.5",
"tap-notify": "^1.0.0",
"tape": "^4.8.0"
},
"dependencies": {
"body-parser": "^1.18.1",
"express": "^4.15.4",
"mongoose": "^4.11.12"
}
}