-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·81 lines (81 loc) · 2.84 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
{
"name": "@develoka/tpx-modal",
"version": "0.0.4",
"description": "Simple customizable modal web component built by following open-wc recommendations",
"author": "tpx-modal",
"homepage": "https://github.com/develoka/tpx-modal/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/deveoka/tpx-modal.git"
},
"scripts": {
"start": "owc-dev-server --open demo",
"lint:eslint": "eslint --ext .js,.html .",
"format:eslint": "eslint --ext .js,.html . --fix",
"lint:prettier": "prettier \"**/*.js\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"format:prettier": "prettier \"**/*.js\" --write",
"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:legacy": "karma start --legacy --coverage",
"test:legacy:watch": "karma start --legacy --auto-watch=true --single-run=false",
"test:bs": "karma start karma.bs.config.js --legacy --coverage",
"site:build": "npm run storybook:build",
"storybook": "start-storybook -p 9001",
"storybook:build": "build-storybook -o _site -s storybook-static",
"start:dev": "webpack-dev-server --mode development --open > /dev/null | sass-render ./src/**/*.scss -t ./css-template.js -w",
"start:dev:legacy": "webpack-dev-server --mode development --legacy",
"start:prod": "http-server dist/ -o",
"build": "webpack --mode production",
"build:stats": "webpack --mode production --profile --json > bundle-stats.json"
},
"dependencies": {
"lit-html": "^1.0.0",
"lit-element": "^2.0.1"
},
"devDependencies": {
"owc-dev-server": "^0.3.0",
"@open-wc/eslint-config": "^0.4.1",
"@open-wc/prettier-config": "^0.1.0",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"husky": "^1.0.0",
"lint-staged": "^8.0.0",
"@open-wc/testing-karma": "^1.0.0",
"webpack-merge": "^4.1.5",
"@open-wc/testing-karma-bs": "^1.0.0",
"@open-wc/testing": "^0.11.1",
"@open-wc/demoing-storybook": "^0.2.0",
"@open-wc/building-webpack": "^1.2.0",
"http-server": "^0.11.1",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"bugs": {
"url": "https://github.com/develoka/tpx-modal/issues"
},
"main": "./src/tpx-modal.js",
"module": "./src/tpx-modal.js",
"directories": {
"test": "test"
},
"keywords": [
"webcomponent",
"lit-element",
"modal",
"dialog",
"popup",
"alert"
]
}