-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.86 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
{
"scripts": {
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint:types": "tsc",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:types",
"format": "npm run format:eslint && npm run format:prettier",
"build": "rimraf dist && rollup -c rollup.config.js",
"start:build": "npm run build && es-dev-server --port 1133 --root-dir dist --app-index index.html --open --compatibility none",
"start": "es-dev-server --app-index index.html --node-resolve --open --watch"
},
"devDependencies": {
"@open-wc/building-rollup": "^1.0.0",
"@open-wc/eslint-config": "^2.0.0",
"es-dev-server": "^1.5.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^1.0.0",
"lint-staged": "^10.0.0",
"md-2-json": "^1.0.6",
"prettier": "^2.0.4",
"rimraf": "^2.6.3",
"rollup": "^2.3.4",
"rollup-plugin-copy": "^3.3.0"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"name": "locator-list",
"version": "1.1.2",
"description": "Webcomponent locator-list following open-wc recommendations",
"author": "locator-list",
"license": "MIT",
"dependencies": {
"@thepassle/generic-components": "^0.2.0",
"es-semver": "^1.0.1",
"lit-element": "^2.0.1",
"lit-html": "^1.0.0",
"pwa-helper-components": "^0.2.10"
}
}