-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sinon-mock-server",
"version": "0.4.1",
"description": "Better fake mock server for sinon",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "eslint lib test && karma start test/karma.conf.js --single-run && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"develop": "karma start test/karma.conf.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mokkabonna/sinon-mock-server.git"
},
"keywords": [
"sinon",
"mock",
"api",
"stub",
"testing"
],
"author": "Martin Hansen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mokkabonna/sinon-mock-server/issues"
},
"homepage": "https://github.com/mokkabonna/sinon-mock-server#readme",
"devDependencies": {
"axios": "^0.16.2",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"es6-promise": "^4.1.1",
"eslint": "^4.8.0",
"eslint-config": "^0.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul-instrumenter-loader": "^3.0.0",
"jquery": "^3.2.1",
"karma": "^1.7.1",
"karma-commonjs": "^1.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.3.2",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.4",
"mocha": "^4.0.1",
"phantomjs": "^2.1.7",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"webpack": "^3.6.0"
},
"dependencies": {
"lodash": "^4.17.4"
}
}