-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.19 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
63
64
65
66
67
{
"name": "dev-feed",
"version": "1.1.0",
"description": "web component that displays a feed from dev.to",
"module": "dev-feed.js",
"author": "Benny Powers <[email protected]>",
"homepage": "https://github.com/bennypowers/dev-feed/",
"license": "MIT",
"repository": "https://github.com/bennypowers/dev-feed/",
"scripts": {
"start": "es-dev-server --app-index demo/index.html --node-resolve --open --watch",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint",
"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:compatibility": "karma start --compatibility all --coverage",
"test:compatibility:watch": "karma start --compatibility all --auto-watch=true --single-run=false",
"test:bs": "karma start karma.bs.config.js --compatibility all --coverage",
"start:build": "cd dist && es-dev-server --open",
"build": "rimraf docs && rollup -c rollup.config.js"
},
"dependencies": {
"date-fns": "^2.6.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
},
"devDependencies": {
"@apollo-elements/eslint-config": "^1.1.0",
"@open-wc/eslint-config": "^1.0.0",
"@open-wc/prettier-config": "^0.1.10",
"@open-wc/testing": "^2.0.0",
"@open-wc/testing-karma": "^4.0.9",
"@open-wc/testing-karma-bs": "^1.0.0",
"eslint": "^6.1.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-no-loops": "^0.3.0",
"husky": "^1.0.0",
"lint-staged": "^13.1.0",
"sinon": "^7.5.0",
"webpack-merge": "^4.1.5",
"@open-wc/building-rollup": "^2.2.1",
"rimraf": "^2.6.3",
"rollup": "^1.15.4"
},
"eslintConfig": {
"extends": [
"@apollo-elements"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}