-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 815 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
{
"name": "chrome-extension-deploy",
"version": "3.0.0",
"description": "Deploy Chrome extensions to the Chrome Web Store.",
"main": "index.js",
"scripts": {
"test": "ava test/test.js",
"test-coverage": "nyc npm test",
"report-coverage": "nyc report --reporter=text --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikdesjardins/chrome-extension-deploy.git"
},
"author": "Erik Desjardins",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikdesjardins/chrome-extension-deploy/issues"
},
"homepage": "https://github.com/erikdesjardins/chrome-extension-deploy#readme",
"devDependencies": {
"ava": "^2.4.0",
"nyc": "^14.1.1",
"superagent-mock": "^3.2.0"
},
"dependencies": {
"superagent": "^3.4.1"
}
}