forked from acvetkov/fake-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "fake-request",
"version": "0.2.1",
"main": "src/fake-request.js",
"description": "Mocking XMLHttpRequest for testing on Node.js",
"homepage": "https://github.com/acvetkov/fake-request",
"author": {
"name": "Aleksey Tsvetkov",
"email": "[email protected]"
},
"scripts": {
"code": "grunt code",
"test": "grunt test"
},
"dependencies": {
"urijs": "^1.18.2"
},
"devDependencies": {
"chai": "^3.2.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-jscs": "^1.8.0",
"grunt-mocha-test": "^0.12.7",
"grunt-webpack": "^1.0.8",
"jshint-stylish": "^2.0.1",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.2.5"
},
"repository": {
"type": "git",
"url": "https://github.com/acvetkov/fake-request"
},
"bugs": {
"url": "https://github.com/acvetkov/fake-request/issues"
},
"keywords": [
"XMLHttpRequest",
"mock",
"test",
"request",
"nodejs"
]
}