-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.04 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
44
45
46
47
48
49
{
"name": "abe-express",
"version": "0.2.0",
"description": "API By Example helper for testing Express API Routes.",
"main": "app.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/apibyexample/abe-express.git"
},
"bugs": {
"url": "https://github.com/apibyexample/abe-express/issues"
},
"homepage": "https://github.com/apibyexample/abe-express",
"keywords": [
"abe",
"json",
"node",
"express",
"supertest",
"routes",
"testing"
],
"author": [
"Nick White <nickswhite89@gmail.com>",
"API By Example <apibyexample@gmail.com>"
],
"license": "MIT",
"dependencies": {
"expect.js": "~0.3.1",
"supertest": "~0.15.0"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-jshint": "~0.10.0",
"grunt-jscs": "~0.8.1",
"grunt-mocha-test": "~0.12.2",
"load-grunt-tasks": "~1.0.0"
},
"peerDependencies": {
"express": "~4.9.0"
},
"engines": {
"node": "~0.10.0"
}
}