-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "demo-calculator",
"description": "A tutorial app of how to build a calculator in JavaScript",
"version": "1.0.0",
"license": "Apache-2.0",
"keywords": [
"tutorial",
"javascript",
"calculator"
],
"authors": [
"Pawel Psztyc"
],
"repository": {
"type": "git",
"url": "git://github.com/jarrodek/demo-calculator.git"
},
"bugs": {
"url": "https://github.com/jarrodek/demo-calculator/issues",
"email": "[email protected]"
},
"scripts": {
"lint:eslint": "eslint --ext .js,.html .",
"format:eslint": "eslint --ext .js,.html . --fix",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint",
"start:build": "cd dist/ && serve",
"build": "rimraf dist && rollup -c rollup.config.mjs",
"test": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium webkit",
"test:watch": "web-test-runner test/**/*.test.js --node-resolve --watch --playwright --browsers chromium",
"start": "wds"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@open-wc/building-rollup": "^3.0.1",
"@open-wc/eslint-config": "^12.0.0",
"@open-wc/testing": "^3.2.0",
"@web/dev-server": "^0.3.0",
"@web/dev-server-esbuild": "^0.4.1",
"@web/test-runner": "^0.17.0",
"@web/test-runner-playwright": "^0.10.1",
"deepmerge": "^4.3.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.1",
"lint-staged": "^13.2.3",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"sinon": "^15.2.0",
"typescript": "^5.1.6",
"typescript-lit-html-plugin": "^0.9.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}