forked from codearoni/zxp-sign-cmd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
{
"name": "zxp-sign-cmd",
"version": "1.0.0",
"description": "A wrapper for Adobe's extension signer",
"main": "index.js",
"scripts": {
"hint": "jshint ./index.js",
"test-no-exe": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/selfSignedCert.test.js ./test/sign.test.js ./test/verify.test.js --report lcovonly -- -R spec",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/selfSignedCert.test.js ./test/sign.test.js ./test/verify.test.js ./test/exe.test.js --report lcovonly -- -R spec",
"test-ci": "npm run hint && npm run test-no-exe"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"keywords": [
"adobe",
"zxp",
"extension",
"sign"
],
"author": "codearoni",
"repository": {
"type": "git",
"url": "https://github.com/codearoni/zxp-sign-cmd"
},
"license": "MIT",
"dependencies": {
"graceful-fs": "^4.1.11",
"zxp-provider": "^1.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"mocha": "^5.0.4",
"mocha-lcov-reporter": "^1.2.0"
}
}