This repository has been archived by the owner on Aug 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.93 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@lit-any/components-paper-elements",
"version": "0.9.1",
"main": "index.js",
"files": [
"*.d.ts",
"*.js.map",
"*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/hypermedia-app/lit-any-components-paper-elements"
},
"homepage": "https://lit-any.hypermedia.app/",
"license": "MIT",
"scripts": {
"prepare": "tsc",
"lint:eslint": "eslint --ext .js,.html,.ts . --quiet",
"format:eslint": "eslint --ext .js,.html,.ts . --quiet --fix",
"lint:prettier": "prettier \"**/*.{js,ts}\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"format:prettier": "prettier \"**/*.{js,ts}\" --write",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "karma start --coverage",
"test:compatibility": "karma start --compatibility all --auto-watch=true --single-run=false",
"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 --compatibility all --coverage",
"test:legacy:watch": "karma start --compatibility all --auto-watch=true --single-run=false",
"test:bs": "karma start karma.bs.config.js --compatibility all --coverage",
"release": "standard-version"
},
"peerDependencies": {
"lit-element": ">= 2",
"lit-html": ">= 1",
"@lit-any/forms": ">= 0.9.0"
},
"dependencies": {
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-dropdown-menu": "^3.0.1",
"@polymer/paper-input": "^3.0.1",
"@polymer/paper-item": "^3.0.1",
"@polymer/paper-listbox": "^3.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"@lit-any/forms": "^0.10.0",
"@open-wc/eslint-config": "^1.0.0",
"@open-wc/prettier-config": "^0.1.0",
"@open-wc/testing": "^2.2.8",
"@open-wc/testing-karma": "^3.1.15",
"@open-wc/testing-karma-bs": "^1.1.40",
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.12",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-plugin-lit": "^1.0.0",
"husky": "^1.0.0",
"lint-staged": "^8.0.0",
"lit-element": "^2.1.0",
"lit-html": "^1.1.0",
"sinon": "^7.3.2",
"standard": "^12.0.1",
"standard-version": "^6.0.1",
"typescript": "^3.4.5",
"webpack-merge": "^4.1.5"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}