-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 933 Bytes
/
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
{
"name": "parrot-mocker",
"version": "1.5.0",
"description": "Intercept requests to the mock server",
"browser": "./dist/parrot.js",
"main": "./src/server.js",
"scripts": {
"build": "sh build.sh",
"zip": "zip -r dist/crx.zip crx",
"prepublish": "npm run build && npm run zip",
"test": "jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"api",
"mock",
"jsonp",
"xhr",
"fetch"
],
"author": "Xianming Zhong",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chinesedfan/parrot-mocker.git"
},
"homepage": "https://github.com/chinesedfan/parrot-mocker",
"devDependencies": {
"coveralls": "^3.0.0",
"jest": "^22.4.2",
"jsdom": "^11.7.0",
"raw-loader": "^0.5.1",
"sinon-chrome": "^2.3.1",
"webpack": "^3.1.0"
},
"dependencies": {
"url": "^0.11.0"
}
}