-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "@k88/format-webpack-messages",
"version": "2.0.0",
"description": "Formats Webpack error messages",
"keywords": [
"format webpack message",
"webpack",
"webpack error",
"webpack warning"
],
"homepage": "https://github.com/ktalebian/format-webpack-messages#readme",
"bugs": {
"url": "https://github.com/ktalebian/format-webpack-messages/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ktalebian/format-webpack-messages.git"
},
"license": "ISC",
"author": "Kousha Talebian <[email protected]>",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"README.md"
],
"scripts": {
"prebuild": "rm -rf build",
"build": "tsc",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"prepublish:public": "npm run build",
"publish:public": "npm publish --access public"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-twilio-ts": "^2.0.0",
"husky": "^8.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"reveal": true
}