-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.63 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
60
61
62
63
64
65
66
{
"name": "restify-resourcify",
"version": "1.3.1",
"description": "Provides base class and ES2016 decorators to declare restify routes.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha",
"test:watch": "mocha --watch",
"build": "babel src --out-dir lib --source-maps",
"watch": "npm run build -- --watch",
"prepublish": "npm run build",
"lint": "eslint src/**/* test/**/*.js"
},
"keywords": [
"restify",
"rest",
"decorators",
"es2016",
"es6",
"es7",
"babel"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.7.0",
"eslint-plugin-mocha": "^2.1.0",
"mocha": "^2.4.5",
"restify": "^4.0.4",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"source-map-support": "^0.4.0"
},
"dependencies": {
"invariant": "^2.2.0",
"jsonschema": "^1.1.0",
"npmlog": "^2.0.0",
"q": "^1.4.1"
},
"peerDependencies": {
"restify": "^4.0.4"
},
"author": "Leo Selig",
"license": "MIT",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leoselig/restify-resourcify.git"
},
"bugs": {
"url": "https://github.com/leoselig/restify-resourcify/issues"
},
"homepage": "https://github.com/leoselig/restify-resourcify#readme"
}