-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 944 Bytes
/
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
{
"name": "catnap",
"version": "2.1.0",
"description": "Fast and simple Resource-Oriented Architecture for Node.",
"repository": "https://github.com/mikaa123/catnap/blob/master/README.md",
"main": "index.js",
"bin": "bin/catnap",
"scripts": {
"test": "mocha",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"keywords": [
"Express",
"REST",
"koa",
"resource",
"api"
],
"author": "Michael Sokol <[email protected]> (http://sokolmichael.com/)",
"license": "MIT",
"devDependencies": {
"mocha": "^1.20.0",
"should": "^4.0.0",
"sinon": "^1.10.1",
"istanbul": "~0.2.10",
"coveralls": "~2.10.0",
"mocha-lcov-reporter": "0.0.1"
},
"dependencies": {
"express": "~4.4.5",
"readdirp": "~1.1.0",
"nodemon": "~1.2.1",
"minimist": "~0.2.0",
"body-parser": "~1.9.0"
}
}