-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.34 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
{
"name": "web-component-decorator",
"version": "1.1.1",
"description": "Lightweight decorators for web components",
"type": "module",
"browser": "dist/bundle.min.js",
"module": "dist/bundle.min.js",
"types": "dist/bundle.min.d.ts",
"sideEffects": false,
"scripts": {
"prepare": "husky install",
"start": "http-server -o demo/ --silent",
"build": "rollup --config --sourcemap && move-cli dist/index.d.ts dist/bundle.min.d.ts",
"dev": "rollup --config --sourcemap --watch",
"release": "npm i --package-lock && npm run lint && npm test && npm run build && npm publish",
"test": "karma start karma.conf.cjs --browsers ChromeHeadless,FirefoxHeadless",
"lint": "eslint . --ext .js,.ts",
"build-demo": "rollup --config demo/rollup.config.js",
"prettier": "prettier --config .prettierrc.json src/*.ts *.json --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwinm/web-component-decorator.git"
},
"files": [
"src/index.ts",
"dist/bundle.min.d.ts",
"dist/bundle.min.js",
"dist/bundle.min.js.map"
],
"keywords": [
"typescript",
"front-end",
"decorator",
"web-components",
"define",
"attribute",
"lightweight",
"micro"
],
"author": {
"name": "Edwin Martin",
"email": "edwin@bitstorm.org",
"url": "https://bitstorm.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/edwinm/web-component-decorator/issues"
},
"homepage": "https://github.com/edwinm/web-component-decorator#readme",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@webcomponents/webcomponentsjs": "^2.8.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.4",
"mocha": "^10.2.0",
"move-cli": "^2.0.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rollup": "^3.26.0",
"rollup-plugin-typescript2": "^0.35.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"@rollup/plugin-terser": "^0.4.3"
}
}