forked from thom4parisot/crx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"author": "Jed Schmidt <[email protected]> (http://jed.is)",
"name": "crx",
"description": "crx is a utility to package Google Chrome extensions via a Node API and the command line",
"version": "3.2.1",
"license": "MIT",
"homepage": "https://github.com/oncletom/crx",
"bin": {
"crx": "./bin/crx.js"
},
"repository": {
"type": "git",
"url": "git://github.com/oncletom/crx.git"
},
"main": "./src/crx.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "nyc tape ./test/*.js",
"version": "npm run changelog && git add CHANGELOG.md",
"changelog": "github-changes -o oncletom -r crx -n ${npm_package_version} --only-pulls --use-commit-body"
},
"nyc": {
"functions": 100,
"statements": 100,
"branches": 100,
"check-coverage": true,
"reporter": [
"text",
"html"
]
},
"dependencies": {
"archiver": "^1.1.0",
"commander": "^2.5.0",
"es6-promise": "^3.0.0",
"node-rsa": "^0.3.0"
},
"devDependencies": {
"adm-zip": "^0.4.7",
"github-changes": "^1.0.0",
"nyc": "^8.3.0",
"tape": "^4.6.0"
}
}