-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
48 lines (48 loc) · 1.15 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
{
"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": "5.0.1",
"license": "MIT",
"homepage": "https://github.com/oncletom/crx",
"repository": {
"type": "git",
"url": "git://github.com/oncletom/crx.git"
},
"main": "./src/index.js",
"bin": {
"crx": "./src/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "nyc tape ./test/*.js",
"posttest": "eslint src/*.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": "^4.0.2",
"commander": "^2.20.0",
"node-rsa": "^1.0.5",
"pbf": "^3.2.0"
},
"devDependencies": {
"adm-zip": "^0.4.13",
"eslint": "^5.16.0",
"github-changes": "^2.0.0",
"nyc": "^14.1.1",
"tape": "^4.11.0"
}
}