-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 814 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 814 Bytes
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": "crudy",
"version": "1.0.1",
"description": "A thin layer acting as glue for Dogwater and Bedwetter. It will expose a RESTful CRUD interface based on your models' definitions.",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"lint": "xo",
"test": "dredd"
},
"author": "g-div",
"url": "https://github.com/g-div/crudy/issues",
"repository": "g-div/crudy",
"license": "ISC",
"peerDependencies": {
"hapi": "^8.4.0",
"dogwater": "^0.4.6",
"bedwetter": "^1.8.1"
},
"devDependencies": {
"dredd": "^1.0.0",
"rejoice": "^2.0.0",
"sails-memory": "^0.10.5",
"xo": "^0.5.1"
},
"xo": {
"esnext": true,
"rules": {
"strict": [
1,
"global"
]
}
},
"dependencies": {
"hoek": "^2.14.0"
}
}