-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.87 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
62
63
64
65
{
"name": "packito",
"version": "0.5.0",
"description": "clean your package before publishing it !",
"main": "dist/index.js",
"module": "dist/index.mjs",
"repository": "https://github.com/mikbry/packito.git",
"bugs": "https://github.com/mikbry/packito/issues",
"homepage": "https://github.com/mikbry/packito",
"author": "Mik <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup -c && ./bin/packito.js",
"dev": "rollup -c && cross-env NODE_ENV=development node ./dist",
"lint": "$(yarn bin)/eslint src",
"test": "cross-env NODE_ENV=test $(yarn bin)/mocha --require esm",
"coverage": "cross-env NODE_ENV=test $(yarn bin)/nyc _mocha",
"report-coverage": "$(yarn bin)/nyc report --reporter=text-lcov > coverage.lcov",
"prepublishOnly": "yarn build"
},
"bin": {
"packito": "./bin/packito.js"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"chalk": "^4.1.0",
"minimist": "^1.2.5",
"node-emoji": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"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.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.26.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}
}