-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.1 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
41
42
43
44
45
46
47
{
"name": "@request/api",
"version": "0.6.0",
"description": "Sugar API for @request/interface consumers",
"keywords": [
"http",
"https",
"request",
"api"
],
"license": "Apache-2.0",
"homepage": "https://github.com/request/api",
"author": "Simeon Velichkov <[email protected]> (http://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/request/api.git"
},
"dependencies": {
"@request/interface": "^0.1.0",
"deep-copy": "^1.1.2",
"extend": "^3.0.0"
},
"devDependencies": {
"@request/client": "^0.1.0",
"coveralls": "^2.11.6",
"eslint": "^2.9.0",
"eslint-config-standard": "^5.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
},
"main": "index.js",
"files": [
"config/",
"lib/",
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"test": "npm run lint && npm run test-ci",
"test-ci": "mocha",
"test-cov": "istanbul cover _mocha",
"lint": "eslint lib/ test/ && echo Lint Passed"
}
}