-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "sinon-server-backend",
"version": "0.0.0",
"description": "An alternative implementation of SinonJS fake server, which provides additional API similar to AngularJS $httpBackend service, e.g. expect().",
"main": "./lib/server.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinkuba/sinon-server-backend.git"
},
"keywords": [
"mock",
"xhr",
"sinon",
"http",
"server",
"fake"
],
"author": "Martin Kuba",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinkuba/sinon-server-backend/issues"
},
"homepage": "https://github.com/martinkuba/sinon-server-backend#readme",
"dependencies": {
"sinon": "^1.15.4"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-karma": "^0.12.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.0",
"phantomjs": "^1.9.17"
}
}