-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.33 KB
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
{
"name": "squirrel",
"version": "0.0.1",
"description": "An simple project for users who use node service to transfrom RESTful API.",
"author": "Li Xipeng <lixipeng@hihuron.com>",
"contributors": [],
"license": "MIT",
"repository": "hahaps/squirrel",
"homepage": "https://github.com/hahaps/squirrel",
"main": "index.js",
"keywords": [
"restful",
"api",
"transformer"
],
"dependencies": {
"request": "~2.60.0",
"debug": "~2.2.0"
},
"devDependencies": {
"istanbul": "0.3.17",
"mocha": "2.2.5",
"should": "7.0.2",
"supertest": "1.0.1",
"jshint": "~2.8.0"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"LICENSE",
"Readme.md",
"index.js",
"lib/"
],
"scripts": {
"test": "npm run-script jshint && mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
"test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/",
"jshint": "jshint 'index.js' 'lib/' 'test/'"
}
}