-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
48
49
50
51
{
"name": "xmock",
"version": "0.3.1",
"description": "express-like, http/xhr mocking, without a server",
"main": "index.js",
"scripts": {
"test": "npm run mocha && npm run karma-ci",
"mocha": "mocha -c test/**/*.js",
"watch": "watch-run -ip \"{test,.}/*.js\" npm run mocha",
"karma": "karma start",
"karma-w": "karma start --auto-watch --no-single-run",
"karma-ci": "karma start karma.conf-ci.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ponelat/xmock.git"
},
"keywords": [
"http",
"xhr",
"mock",
"test",
"mocha"
],
"author": "Josh Ponelat",
"license": "ISC",
"bugs": {
"url": "https://github.com/ponelat/xmock/issues"
},
"homepage": "https://github.com/ponelat/xmock#readme",
"dependencies": {
"faux-jax": "^5.0.1",
"path-to-regexp": "^1.2.1"
},
"devDependencies": {
"async": "^1.4.2",
"chai": "^3.4.0",
"karma": "^0.13.14",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sauce-launcher": "^0.3.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"mocha": "^2.3.3",
"superagent": "^1.4.0",
"watch-run": "^1.2.2",
"webpack": "^1.12.2"
}
}