-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 913 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
32
33
34
35
36
37
38
{
"name": "express-decorators",
"version": "1.2.1",
"description": "ES2015 decorators for express",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"keywords": [
"ES6",
"ES2015",
"decorators",
"express"
],
"dependencies": {
"reflect-metadata": "^0.1.9"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/supertest": "^2.0.4",
"ava": "^0.17.0",
"express": "^4.14.0",
"supertest": "^3.0.0",
"typescript": "^2.7.2"
},
"scripts": {
"test": "ava dist/test/**/*.js",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stewartml/express-decorators.git"
},
"author": "Stewart MacKenzie-Leigh",
"license": "ISC",
"bugs": {
"url": "https://github.com/stewartml/express-decorators/issues"
},
"homepage": "https://github.com/stewartml/express-decorators#readme"
}