-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 3.1 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
{
"name": "custom-elements-hmr-polyfill",
"version": "1.0.2",
"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 fuse",
"watch": "node fuse",
"build": "node fuse build && npm run rollup",
"rollup": "./node_modules/.bin/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": "./node_modules/.bin/eslint --fix ./src/package/**/*.ts",
"eslint:run:sample": "./node_modules/.bin/eslint --fix ./src/sample/**/*.ts",
"typecheck": "node fuse typecheck-package",
"test": "jest --verbose --env jest-environment-jsdom-sixteen",
"test:watch": "jest --runInBand --watch --verbose --env jest-environment-jsdom-sixteen",
"testci": "jest --collectCoverage --verbose --runInBand --env jest-environment-jsdom-sixteen && npm run typecheck && npm run eslint && codecov",
"test:coverage": "jest --collectCoverage --runInBand --verbose --env jest-environment-jsdom-sixteen"
},
"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": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"fuse-box": "4.0.0-next.425",
"fuse-box-typechecker": "^3.0.0-next.31",
"husky": "^4.2.5",
"jest": "^25.3.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"rollup": "^2.6.1",
"rollup-plugin-terser": "^5.3.0",
"ts-jest": "^25.3.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{json,md,ts}": [
"prettier --write",
"git add"
]
},
"dependencies": {}
}