-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "decorator-express",
"version": "0.0.2",
"description": "a wip, simpler version of es7 decorator express",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"prepublish": "npm run build && npm test",
"clean": "rimraf -r build .nyc_output coverage",
"cover": "nyc ava build/test/**/*.js",
"cover:report": "nyc report --reporter=html ava build/test/**/*.js",
"test": "ava build/test/**/*.js",
"test:watch": "npm run test -- '-w build'",
"build": "tsc",
"build:watch": "npm run build -- '-w'"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "0.0.32",
"@types/express": "^4.0.32",
"@types/sinon": "^1.16.29",
"@types/supertest": "^1.1.30",
"@types/webpack": "^1.12.34",
"ava": "^0.16.0",
"body-parser": "^1.15.2",
"clear": "0.0.1",
"coveralls": "^2.11.13",
"express": "^4.14.0",
"nyc": "^8.3.0",
"rimraf": "^2.5.4",
"sinon": "^2.0.0-pre.2",
"supertest": "^2.0.0",
"supertest-as-promised": "^4.0.0",
"typescript": "^2.0.0"
},
"dependencies": {
"deep-assign": "^2.0.0"
},
"peerDependencies": {
"express": "^4.14.0"
}
}