-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.29 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": "js-starter-library",
"version": "0.0.1",
"description": "Javascript library",
"main": "index.js",
"scripts": {
"build": "rollup -c && npm run build:min",
"build:min": "rollup -c --environment minify",
"lint": "eslint src test",
"lint:reformat": "eslint --fix src test",
"dist": "npm run build",
"preversion": "npm run test",
"version": "npm run build && git add -A",
"postversion": "git push --follow-tags",
"test": "jest"
},
"keywords": [
"starter",
""
],
"author": "David Hodge",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-jest": "^26.0.1",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.10.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}