-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 929 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
37
38
39
40
41
42
{
"name": "superagent-cli",
"version": "2.1.0",
"description": "A cli wrapper for super agent",
"main": "index.js",
"scripts": {
"test": "mocha test/*test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/toastynerd/superagent-cli"
},
"keywords": [
"superagent",
"rest",
"cli"
],
"author": "Tyler Morgan <[email protected]>",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/toastynerd/automocha/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/toastynerd/superagent-cli/issues"
},
"bin": {
"superagent": "./bin/superagent"
},
"homepage": "https://github.com/toastynerd/superagent-cli",
"dependencies": {
"superagent": "^0.18.2"
},
"devDependencies": {
"app-root-path": "^0.1.0",
"body-parser": "^1.6.5",
"chai": "^1.9.1",
"express": "^4.8.5",
"sinon": "^1.10.3"
}
}