-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
38 lines (38 loc) · 1010 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
{
"author": "ctide <[email protected]> (http://www.github.com/ctide)",
"name": "node-fakeweb",
"description": "Fakeweb implementation in node for testing HTTP requests",
"version": "1.1.0",
"homepage": "http://www.github.com/ctide/fakeweb",
"repository": {
"type": "git",
"url": "git://github.com/ctide/fakeweb.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "./src/fakeweb.js",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"request": ">= 2.16.6"
},
"scripts": {
"lint": "node_modules/.bin/eslint src/**/*.js",
"test": "grunt"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.1",
"grunt": "^1.0.1",
"gruntify-eslint": "^3.1.0",
"grunt-mocha-test": "^0.13.2",
"mocha": "^3.1.2"
}
}