-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "github-api",
"version": "0.0.0",
"author": "Kumaresan",
"bugs": "https://github.com//github-api/issues",
"dependencies": {
"lwc-services": "^1.2.2"
},
"devDependencies": {
"husky": "^2.7.0",
"lint-staged": "^8.2.1"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://github.com//github-api",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"lwc"
],
"license": "MIT",
"lint-staged": {
"**/*.{css,html,js,json,md,yaml,yml}": [
"prettier --write"
],
"**/modules/**/*.js": [
"eslint"
],
"*": [
"git add"
]
},
"repository": "/github-api",
"scripts": {
"build": "lwc-services build -m production",
"build:development": "lwc-services build",
"lint": "eslint ./src/**/*.js",
"prettier": "prettier --write '**/*.{css,html,js,json,md,yaml,yml}'",
"prettier:verify": "prettier --list-different '**/*.{css,html,js,json,md,yaml,yml}'",
"serve": "lwc-services serve",
"test:unit": "lwc-services test",
"test:unit:coverage": "lwc-services test --coverage",
"test:unit:debug": "lwc-services test --debug",
"test:unit:watch": "lwc-services test --watch",
"watch": "lwc-services watch"
}
}