-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.84 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
{
"scripts": {
"lint:eslint": "eslint --ext .js,.html .",
"format:eslint": "eslint --ext .js,.html . --fix",
"lint:prettier": "prettier \"**/*.js\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"format:prettier": "prettier \"**/*.js\" --write",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "karma start --coverage",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test:update-snapshots": "karma start --update-snapshots",
"test:prune-snapshots": "karma start --prune-snapshots",
"test:legacy": "karma start --legacy --coverage",
"test:legacy:watch": "karma start --legacy --auto-watch=true --single-run=false",
"test:bs": "karma start karma.bs.config.js --legacy --coverage",
"start:build": "owc-dev-server dist/ --open",
"build": "rimraf dist && rollup -c rollup.config.js",
"start": "owc-dev-server --app-index index.html --open --watch"
},
"devDependencies": {
"@open-wc/eslint-config": "^0.4.1",
"@open-wc/prettier-config": "^0.1.0",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"husky": "^1.0.0",
"lint-staged": "^8.0.0",
"@open-wc/testing-karma": "^2.0.0",
"webpack-merge": "^4.1.5",
"@open-wc/testing-karma-bs": "^1.0.0",
"@open-wc/testing": "^0.11.1",
"@open-wc/building-rollup": "^0.5.5",
"rimraf": "^2.6.3",
"rollup": "^1.15.4",
"owc-dev-server": "^1.0.0",
"eslint-plugin-lit": "^1.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"name": "edinburgh-cycles",
"license": "MIT",
"dependencies": {
"@appnest/web-router": "^1.3.7",
"lit-element": "^2.0.1",
"lit-html": "^1.0.0"
}
}