-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.18 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": "@ltmp/components",
"version": "0.3.0",
"publishConfig": {
"access": "public"
},
"source": "src/components.ts",
"main": "./dist/components.js",
"module": "./dist/components.module.js",
"unpkg": "./dist/components.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/components.module.js"
},
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "ts-standard src/ test/",
"fix": "ts-standard src/ test/ --fix",
"test": "yarn fix && web-test-runner",
"test:watch": "yarn fix && web-test-runner --watch",
"start": "yarn build && web-dev-server",
"start:watch": "web-dev-server --watch",
"build": "yarn clean && yarn fix && rollup -c",
"build:watch": "yarn clean && yarn fix && rollup -wc",
"deploy": "yarn build && standard-version --release-as",
"deploy:beta": "yarn build && standard-version --prerelease beta",
"deploy:patch": "yarn build && standard-version --release-as patch",
"deploy:minor": "yarn build && standard-version --release-as minor",
"deploy:major": "yarn build && standard-version --release-as major",
"push": "git push --follow-tags origin main && yarn publish",
"analyze": "cem analyze"
},
"dependencies": {
"@microsoft/fast-element": "^1.4.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.4.12",
"@esm-bundle/chai": "^4.3.0",
"@open-wc/testing": "^3.0.0-next.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.5",
"@web/dev-server": "^0.1.8",
"@web/dev-server-esbuild": "^0.2.11",
"@web/rollup-plugin-html": "^1.10.0",
"@web/test-runner": "^0.12.15",
"@web/test-runner-playwright": "^0.8.4",
"playwright": "^1.12.2",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.2.4",
"standard-version": "^9.3.0",
"ts-standard": "^10.0.0",
"typescript": "^4.2.3"
},
"ts-standard": {
"ignore": [
"dist"
],
"project": "./tsconfig-dev.json"
},
"customElements": "custom-elements.json"
}