-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 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
79
80
81
82
83
84
{
"name": "type-dom-ui",
"version": "0.0.8",
"description": "type dom ui components . ",
"main": "src/index.ts",
"scripts": {
"serve": "webpack-dev-server --mode=development --config ./build/webpack.config.js",
"build": "rimraf dist && tsc",
"lib": "webpack --mode=none --config ./build/webpack.lib.config.js",
"postversion": "rimraf dist && tsc && cp README.md package.json dist && cd dist && npm publish",
"test": "jest",
"lint": "eslint src",
"lint-fix": "eslint 'src/**/*.{ts,js,tsx,jsx}' --fix -o eslint_log.log",
"uml": "tsuml2 --glob type-dom/type-node/web-element/*.ts ",
"docs": "typedoc --entryPointStrategy expand ./src",
"coverage": "typescript-coverage-report",
"git-push": "git add . && git commit -m 'edit' && git push origin main",
"git-pull": "git pull"
},
"keywords": [
"ui compoents",
"typescript",
"type-dom",
"type-dom-ui",
"type-dom-svgs",
"TypeNode",
"TypeDomUI",
"Class based programming"
],
"author": "Xu",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"autoprefixer": "^10.4.15",
"babel-loader": "^9.1.2",
"eslint": "^8.42.0",
"eslint-webpack-plugin": "^4.0.1",
"jest": "^29.6.2",
"lint": "^1.1.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.3",
"typedoc": "^0.25.2",
"typescript": "^5.2.2",
"typescript-coverage-report": "^0.8.0"
},
"dependencies": {
"@type-dom/framework": "*",
"@type-dom/svgs": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/type-dom/ui.git"
},
"typeCoverage": {
"atLeast": 99,
"is": 99,
"cache": true,
"debug": true,
"detail": true,
"ignoreCatch": true,
"ignoreFiles": [
"demo1/*.ts",
"demo2/foo.ts"
],
"project": "tsconfig.json",
"strict": true,
"suppressError": true,
"update": true,
"ignoreUnread": true,
"ignoreNested": true,
"ignoreAsAssertion": true,
"ignoreTypeAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"historyFile": "typecoverage.json",
"noDetailWhenFailed": true
}
}