-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "servercooties-io",
"version": "0.0.0",
"private": true,
"scripts": {
"init": "validate-commit-msg",
"lint": "tslint \"**/*.ts\" -e \"node_modules/**/*.ts\" -e \"typings/**/*.ts\" -e \"dist/**/*.ts\"",
"prebuild": "npm run lint",
"build": "tsc",
"preunittest": "npm run build",
"unittest": "ts-node node_modules/mocha/bin/_mocha --reporter dot test/**/*.ts",
"precoverage": "npm run build",
"coverage": "ts-node node_modules/istanbul/lib/cli.js cover -e .ts node_modules/mocha/bin/_mocha -- --reporter dot test/**/*.ts",
"pretest": "npm run coverage",
"test": "istanbul check-coverage coverage/coverage.raw.json",
"prestart": "npm run build",
"start": "node ./bin/www",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"prepush": "npm test",
"postmerge": "npm install",
"postrewrite": "npm install"
},
"dependencies": {
"body-parser": "~1.16.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.0",
"express": "~4.14.1",
"hbs": "~4.0.1",
"js-yaml": "^3.7.0",
"less-middleware": "~2.2.0",
"morgan": "~1.8.0",
"serve-favicon": "~2.3.2",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-string": "^1.3.0",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^1.2.0",
"husky": "^0.13.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"sinon-as-promised": "^4.0.2",
"ts-node": "^2.0.0",
"tslint": "^4.4.2",
"typescript": "^2.1.5",
"validate-commit-msg": "^2.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}