-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.59 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
58
59
{
"name": "node-base",
"version": "0.0.1",
"description": "Base repo for node.js typescript development",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/masimakopoulos/node-base"
},
"author": "Michael Asimakopoulos",
"keywords": [
"node",
"express",
"typescript",
"tape",
"supertest",
"npm task",
"node-base"
],
"scripts": {
"postinstall": "tsd install",
"clean": "trash src/**/*.js* spec/**/*.js* e2e/**/*.js*",
"lint": "tsconfig && tsconfig-lint",
"build": "tsc -p .",
"start": "npm run build && node src/index.js",
"test": "npm run build && tape spec/**/*.js | tap-spec",
"test:watch": "onchange 'src/**/*.ts' 'spec/**/*.ts' -- npm test",
"test:coverage": "npm run build && istanbul cover -x 'spec/**/*.js' tape 'spec/**/*.js' > test.tap && istanbul report clover",
"e2e": "npm run build && tape e2e/**/*.js | tap-spec",
"e2e:watch": "onchange 'src/**/*.ts' 'e2e/**/*.ts' -- npm run e2e"
},
"dependencies": {
"express": "^4.13.3"
},
"devDependencies": {
"commitizen": "^2.4.4",
"cz-conventional-changelog": "^1.1.4",
"istanbul": "^0.4.0",
"onchange": "^2.0.0",
"supertest": "^1.1.0",
"tap-spec": "^4.1.0",
"tape": "^4.2.2",
"trash-cli": "^1.2.0",
"tsconfig-glob": "^0.2.1",
"tsconfig-lint": "^0.1.9",
"tsd": "^0.6.5",
"tslint": "^2.5.1",
"typescript": "^1.6.2"
},
"engines": {
"node": ">=0.12.0"
},
"main": "app.js",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}