-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "hiit-time",
"version": "1.0.0",
"description": "HIIT time application",
"scripts": {
"start": "npx http-server",
"lint": "npx eslint . --ext .js,.mjs --fix --ignore-pattern dist/ --ignore-pattern lit-html/ --ignore-pattern shoelace/",
"fix": "npx prettier --write .",
"copy": "shx cp -r node_modules/lit-html . && shx cp -r node_modules/@shoelace-style/shoelace/dist/shoelace .",
"prepare": "npm run lint && npm run fix && npm run copy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomayac/hiit-time.git"
},
"bugs": {
"url": "https://github.com/tomayac/hiit-time/issues"
},
"homepage": "https://github.com/tomayac/hiit-time#readme",
"keywords": [
"hiit"
],
"author": "Thomas Steiner (tomac@google.com)",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.2.0",
"http-server": "^0.12.3",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"terser": "^5.5.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"google",
"prettier"
]
},
"dependencies": {
"@shoelace-style/shoelace": "^2.0.0-beta.26",
"lit-html": "^1.3.0"
}
}