-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "router-decorator",
"description": "Simple router ES7 decorators",
"version": "0.1.0",
"author": "Masaki Tojo",
"bugs": {
"url": "https://github.com/mtojo/node-router-decorator/issues"
},
"devDependencies": {
"babel-cli": "~6.16.0",
"babel-eslint": "~7.0.0",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-preset-latest": "~6.16.0",
"babel-preset-power-assert": "~1.0.0",
"babel-register": "~6.16.3",
"eslint": "~3.7.1",
"express": "~4.14.0",
"mocha": "~3.1.2",
"power-assert": "~1.4.1"
},
"directories": {
"example": "example/",
"test": "test/"
},
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/mtojo/node-router-decorator",
"keywords": [
"decorators",
"router"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mtojo/node-router-decorator.git"
},
"scripts": {
"lint": "eslint .",
"start": "babel-node example/node",
"test": "mocha --compilers js:babel-register"
}
}