-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.52 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
{
"name": "lit-place-input",
"version": "1.0.9",
"description": "A simple and fully customizable place autocomplete component extending @mwc-textfield, following open-wc recommendations",
"author": "Mohammed Shah <@smashah>",
"license": "MIT",
"main": "lib/LitPlaceInput.js",
"module": "lib/LitPlaceInput.js",
"scripts": {
"build": "tsc",
"start": "es-dev-server --app-index demo/index.html --node-resolve --open --watch",
"lint:eslint": "eslint --ext .ts,.html . --ignore-path .prettierignore ",
"format:eslint": "eslint --ext .ts,.html . --fix --ignore-path .prettierignore ",
"lint:prettier": "prettier \"**/*.ts\" --check --ignore-path .prettierignore ",
"format:prettier": "prettier \"**/*.ts\" --write --ignore-path .prettierignore ",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"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:bs": "karma start karma.bs.config.js --coverage",
"storybook": "start-storybook --node-resolve --watch --open",
"storybook:build": "build-storybook",
"deploy-storybook": "storybook-to-ghpages --existing-output-dir=storybook-static",
"sbbad": "npm run storybook:build && npm run deploy-storybook"
},
"dependencies": {
"@google-web-components/google-apis": "^3.0.1",
"@material/mwc-icon": "0.19.1",
"@material/mwc-textfield": "^0.19.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"tslib": "^2.0.0"
},
"devDependencies": {
"@open-wc/demoing-storybook": "^2.0.0",
"@open-wc/eslint-config": "^2.0.0",
"@open-wc/prettier-config": "^1.1.0",
"@open-wc/testing": "^2.0.0",
"@open-wc/testing-karma": "^4.0.8",
"@open-wc/testing-karma-bs": "^1.0.0",
"@storybook/storybook-deployer": "^2.8.3",
"deepmerge": "^4.2.2",
"es-dev-server": "^1.23.0",
"eslint": "^7.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": "@open-wc/prettier-config",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/smashah/lit-place-input.git"
}
}