-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "Wrap",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "tape 'tests/**/*.spec.js'",
"coverage": "nyc npm run test",
"start": "node src/index.js",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"start:watch": "nodemon -q src/index.js",
"linter": "semistandard --fix ",
"test-db": "node tests/queriestest.js | tap-spec"
},
"pre-commit": [
"linter"
],
"license": "ISC",
"dependencies": {
"bcrypt": "^1.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"codecov": "^2.3.0",
"cookie-parser": "^1.4.3",
"env2": "^2.2.0",
"eslint-config-semistandard": "^11.0.0",
"express": "^4.15.4",
"express-handlebars": "^3.0.0",
"jsonwebtoken": "^8.0.1",
"pg": "7.1.2",
"pg-promise": "^6.5.1"
},
"devDependencies": {
"eslint": "^4.8.0",
"nodemon": "^1.12.1",
"nyc": "^11.2.1",
"pre-commit": "^1.2.2",
"semistandard": "^11.0.0",
"shot": "^3.4.2",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"all": true
}
}