-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
57
58
59
60
61
{
"name": "anzip",
"version": "0.2.0",
"description": "Node Async Unzip Lib",
"main": "dist/index.js",
"module": "dist/index.mjs",
"repository": "https://github.com/mikbry/anzip.git",
"bugs": "https://github.com/mikbry/anzip/issues",
"homepage": "https://github.com/mikbry/anzip",
"author": "Mik <mik@miklabs.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "$(yarn bin)/eslint src",
"test": "cross-env NODE_ENV=test $(yarn bin)/mocha --require esm test",
"coverage": "$(yarn bin)/nyc _mocha test",
"report-coverage": "$(yarn bin)/nyc report --reporter=text-lcov > coverage.lcov",
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"yauzl": "^2.10.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"esm": "^3.2.25",
"husky": "^4.2.5",
"mocha": "^8.1.2",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.26.5"
},
"esm": {
"cjs": true
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}
}