-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
49
50
51
52
53
54
55
56
{
"name": "zxp-builder",
"version": "1.0.3",
"description": "Adobe Extension Packager",
"main": "zxpbuild.js",
"bin": {
"zxpbuild": "zxpbuild.js"
},
"scripts": {
"buildEnv": "curl https://raw.githubusercontent.com/ES-Collection/build-node-venv/master/build-node-venv.sh > ./.bnv.sh && chmod +x ./.bnv.sh && ./.bnv.sh && rm ./.bnv.sh",
"test": "npm link && ./node_modules/mocha/bin/_mocha ./test/*.test.js",
"test-cert": "npm link && zxpbuild cert -o ./bin/testCert.p12 -c AU -s Victoria -g Corp -n testCert -p",
"test-package": "npm run test-cert && zxpbuild package -i ./test/ext -o ./bin/test.zxp -c ./bin/testCert.p12 -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoverBuilder/zxp-builder.git"
},
"keywords": [
"zxp",
"p12",
"certificate",
"build",
"sign",
"package",
"adobe",
"extension",
"plugin",
"exchange"
],
"contributors": [
{
"name": "Jake Brown",
"url": "https://github.com/codearoni"
},
{
"name": "Bruno Herfst",
"url": "https://github.com/GitBruno"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CoverBuilder/zxp-builder/issues"
},
"homepage": "https://github.com/CoverBuilder/zxp-builder#readme",
"dependencies": {
"commander": "^2.19.0",
"zxp-sign-cmd": "^1.0.0"
},
"devDependencies": {
"add-local-binaries-to-path": "^1.1.3",
"chai": "^4.1.2",
"mocha": "^5.0.4",
"node-cmd": "^3.0.0"
}
}