-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.41 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
{
"name": "@shzh-playground/tiny-virtual-dom",
"version": "1.0.0",
"description": "Tiny virtual DOM library implemented by typescript.",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint --fix src/**/*.ts",
"lint-check": "eslint src/**/*.ts",
"pre-commit": "prettier --write **/*.ts && eslint src/**/*.ts && jest",
"build": "webpack",
"test": "jest",
"debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShZh-Playground/tiny-virtual-dom.git"
},
"author": "Sh-Zh-7",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShZh-Playground/tiny-virtual-dom/issues"
},
"homepage": "https://github.com/ShZh-Playground/tiny-virtual-dom#readme",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@types/node": "^14.14.32",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-plugin-github": "^4.1.2",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "2.2.1",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"typescript": "^4.2.3",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}