-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 827 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 827 Bytes
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
{
"name": "zxp-provider",
"version": "2.0.0",
"description": "Provides the ZXPSignCmd executable for signing Adobe extensions.",
"main": "lib/zxp.js",
"scripts": {
"lint": "eslint ./lib",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"test-ci": "npm run lint && npm run test",
"postinstall": "node ./postInstall.js"
},
"keywords": [
"adobe",
"zxp",
"extensions"
],
"author": "codearoni",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/codearoni/zxp-provider.git"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"istanbul": "^0.4.3",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.2.0"
}
}