-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
53 lines (53 loc) · 1.12 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
{
"name": "restful-keystone",
"version": "0.3.0",
"description": "Automatic RESTful API enabler for KeystoneJS",
"author": {
"name": "d-pac",
"email": "[email protected]",
"url": "http://www.d-pac.be"
},
"repository": "d-pac/restful-keystone",
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"keywords": [
"restful-keystone",
"keystone",
"rest",
"api"
],
"dependencies": {
"peerdep": "^0.1.0",
"lodash": "^3.2.0",
"debug": "^2.1.1",
"errors": "^0.2.0",
"bluebird": "^2.9.9",
"require-directory": "^2.0.0",
"node-constants": "0.0.2",
"deepmerge": "^0.2.7"
},
"peerDependencies": {
"keystone": "^0.3.0"
},
"devDependencies": {
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.10.0",
"time-grunt": "^1.0.0",
"grunt-mocha-cli": "^1.11.0",
"jshint-stylish": "^1.0.0",
"jit-grunt": "^0.9.1",
"load-grunt-configs": "^0.4.2",
"grunt-jscs": "^1.5.0",
"must": "^0.12.0",
"sinon": "^1.12.2",
"proxyquire": "^1.3.1"
},
"scripts": {
"test": "grunt",
"install": "peerdep"
}
}