-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 994 Bytes
/
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
{
"name": "lwc-mashup",
"version": "0.0.0",
"author": "Kevin Venkiteswaran @kevinv11n",
"bugs": "https://github.com/kevinv11n/lwc-mashup/issues",
"devDependencies": {
"http-server": "^0.11.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.1"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://github.com/kevinv11n/lwc-mashup",
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
},
"keywords": [
"lwc"
],
"license": "MIT",
"lint-staged": {
"**/*.{html,js,json,yaml,yml,md}": [
"prettier --write"
],
"**/modules/**": [
"eslint"
],
"*": [
"git add"
]
},
"repository": "kevinv11n/lwc-mashup",
"scripts": {
"lint": "eslint ./src/**/*.js",
"prettier": "prettier --write '**/*.{css,html,js,json,md,yaml,yml}'",
"serve": "http-server -p 3000 ."
},
"dependencies": {
"ag-grid-community": "^20.2.0",
"ag-grid-webcomponent": "^17.1.0"
}
}