-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "log4fe",
"version": "0.1.3",
"description": "a light & configurable logger for FE",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": {
"name": "SoraYama",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"lib/**/*"
],
"scripts": {
"prebuild": "npm run lint",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js && tsc",
"dev": "tsc --watch",
"prepublish": "tsc && npm run build",
"lint": "tsc --noEmit && eslint '*/**/*.ts' --quiet --fix",
"doc": "typedoc --tsconfig ./tsconfig.json && touch ./docs/.nojekyll"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/SoraYama/log4fe/issues"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-loader": "^8.0.2",
"typedoc": "^0.18.0",
"typescript": "^3.9.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
}
}