forked from A/superagent-mocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "superagent-mocker",
"version": "0.4.0",
"description": "Pretty simple mocks for the CRUD and REST API",
"main": "index.js",
"scripts": {
"test": "mocha",
"make-cov": "jscoverage index.js index-cov.js",
"cov": "npm run make-cov; SM_COV=1 mocha -R html-cov > coverage.html",
"coveralls": "npm run make-cov; SM_COV=1 mocha -R mocha-lcov-reporter | coveralls"
},
"repository": {
"type": "git",
"url": "[email protected]:shuvalov-anton/superagent-mocker.git"
},
"keywords": [
"superagent",
"crud",
"mocks",
"stubs",
"rest",
"test"
],
"author": "Anton <[email protected]> (http://shuvalov.info/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shuvalov-anton/superagent-mocker/issues"
},
"homepage": "https://github.com/shuvalov-anton/superagent-mocker",
"devDependencies": {
"coveralls": "^2.11.4",
"jscoverage": "^0.6.0",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "^1.0.0",
"should": "^6.0.1",
"superagent": "^1.2.0"
},
"dependencies": {
"path-to-regexp": "^1.1.0"
}
}