-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "pretty-json",
"version": "1.0.0",
"description": "pretty-print JSON with litElement",
"main": "index.js",
"module": "index.js",
"author": "https://medium.com/@mauriciogc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:mauriciogc/pretty-json.git"
},
"scripts": {
"start": "es-dev-server --app-index demo/index.html --node-resolve --open --watch",
"test": "karma start --coverage --watch",
"test:watch": "karma start --auto-watch=true --single-run=false"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"prepare-commit-msg": "yarn test",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
},
"devDependencies": {
"@open-wc/testing": "^2.5.25",
"@open-wc/testing-karma": "^4.0.5",
"deepmerge": "^4.2.2",
"es-dev-server": "^1.57.4",
"eslint": "^7.9.0",
"eslint-plugin-no-loops": "^0.3.0",
"husky": "^4.3.0",
"karma": "^5.2.2",
"lint-staged": "^10.3.0"
}
}