-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "express-rested",
"version": "1.6.2",
"description": "Manage resources with REST through Express",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test:unit": "tape test/*.js | tap-spec",
"test": "eslint . && jscs -v index.js lib test && npm run test:unit",
"cover": "rm -rf .nyc_output && nyc --silent --all tape 'test/*.js' > /dev/null 2>&1 && nyc report",
"coveralls": "nyc --all tape 'test/*.js' && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"express",
"rest",
"rested",
"hypermedia",
"api",
"resources"
],
"author": "Ron Korving <[email protected]>",
"license": "MIT",
"devDependencies": {
"body-parser": "^1.14.1",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"express": "^4.13.3",
"jscs": "^2.9.0",
"nyc": "^5.5.0",
"pre-commit": "^1.1.2",
"tap-spec": "^4.1.1",
"tape": "^4.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Wizcorp/express-rested.git"
}
}