-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "unzip-crx",
"version": "0.2.0",
"description": "Unzip chrome extension files",
"main": "./dist/index.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"build": "babel src --out-dir dist",
"lint": "eslint ./src",
"prepublish": "npm run build",
"test": "mocha -R spec --recursive --compilers js:babel-core/register",
"test-watch": "mocha --recursive --watch --compilers js:babel-core/register",
"posttest": "npm run lint",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"unzip",
"crx",
"chrome",
"extensions",
"zip"
],
"author": "Peerigon developers <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/peerigon/unzip-crx.git"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"coveralls": "^2.11.12",
"eslint": "^3.2.2",
"eslint-config-peerigon": "^6.0.0",
"eslint-plugin-jsdoc": "^2.3.1",
"mocha": "^3.0.1",
"mock-fs": "^3.11.0",
"nyc": "^7.1.0",
"temp": "^0.8.3",
"unexpected": "^10.15.0"
},
"dependencies": {
"jszip": "^3.1.0",
"mkdirp": "^0.5.1",
"yaku": "^0.16.6"
}
}