-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.78 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
{
"name": "custom-elements-hmr-polyfill",
"version": "1.0.3",
"description": "Custom Elements HMR polyfill",
"main": "dist/CommonJS/index.js",
"module": "dist/ES6/index.js",
"typings": "dist/CommonJS/index.d.ts",
"scripts": {
"prebootstrap": "npx st-rm-rf ./node_modules package-lock.json",
"bootstrap": "npm i",
"start": "node script-start",
"watch": "node script-start",
"build": "node script-build && npm run rollup",
"rollup": "rollup -c",
"prettier:run": "node ./node_modules/prettier/bin-prettier --write \"src/**/*.{json,md,ts}\" ",
"eslint": "npm run eslint:run:package && npm run eslint:run:sample",
"eslint:run:package": "eslint --fix ./src/package/**/*.ts",
"eslint:run:sample": "eslint --fix ./src/sample/**/*.ts",
"typecheck": "node script-typecheck",
"test": "jest --verbose",
"test:watch": "jest --runInBand --watch --verbose",
"testci": "jest --collectCoverage --verbose --runInBand && npm run typecheck && npm run eslint && codecov",
"test:coverage": "jest --collectCoverage --runInBand --verbose ",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vegarringdal/custom-elements-hmr-polyfill.git"
},
"author": "Vegar Ringdal<[email protected]> & Aron Homberg<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vegarringdal/custom-elements-hmr-polyfill/issues"
},
"homepage": "https://github.com/vegarringdal/custom-elements-hmr-polyfill#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"compression": "^1.7.4",
"esbuild": "^0.12.1",
"esbuild-helpers": "0.0.4",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jsdom": "^16.6.0",
"lint-staged": "^11.0.0",
"minify-html-literals": "^1.3.5",
"postcss": "^8.3.0",
"prettier": "^2.3.0",
"rollup": "^2.49.0",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^2.1.2",
"ts-jest": "^26.5.6",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{json,md,ts}": [
"prettier --write",
"git add"
]
}
}