-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
84 lines (84 loc) · 2.51 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": "micro-framework",
"version": "1.1.6",
"description": "深入浅出微前端",
"scripts": {
"prepare": "husky install",
"build": "ts-node build/build.ts",
"release": "ts-node build/release.ts",
"lint": "eslint --ext .ts src test",
"prettier": "prettier src",
"test": "jest --bail",
"cz": "git cz",
"changelog": "conventional-changelog -p angular -i docs/CHANGELOG.md -s -r 0",
"prepublishOnly": "npm run test",
"docs:api": "typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs --hideInPageTOC --out docs/api src/index.ts",
"docs:dev": "npm run changelog && npm run docs:api && vuepress dev docs",
"docs:build": "npm run changelog && npm run docs:api && vuepress build docs"
},
"config": {
"flat": true,
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziyi2/micro-framework.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ziyi2/micro-framework/issues"
},
"homepage": "https://github.com/ziyi2/micro-framework#readme",
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@types/fs-extra": "11.0.1",
"@types/glob": "8.1.0",
"@types/gulp": "4.0.10",
"@types/jest": "29.5.4",
"@types/merge2": "1.4.0",
"@types/node": "18.14.2",
"@types/node-fetch": "2.6.2",
"@types/semver": "7.3.13",
"@types/shelljs": "0.8.11",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"chalk": "4.1.2",
"commitizen": "4.3.0",
"commitlint-config-cz": "0.13.3",
"conventional-changelog-cli": "4.0.0",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "7.0.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-jest": "27.2.3",
"fs-extra": "11.1.0",
"glob": "9.0.1",
"gulp": "4.0.2",
"gulp-typescript": "6.0.0-alpha.1",
"husky": "8.0.3",
"jest": "29.6.4",
"lint-staged": "13.2.0",
"merge2": "1.4.1",
"node-fetch": "2.6.7",
"prettier": "2.8.4",
"semver": "7.3.8",
"shelljs": "0.8.5",
"simple-git": "3.17.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typedoc": "^0.25.1",
"typedoc-plugin-markdown": "3.16.0",
"typescript": "4.9.5",
"vuepress": "1.9.10",
"vuepress-plugin-cat": "1.0.3",
"vuepress-plugin-typedoc": "0.13.0"
},
"engines": {
"node": ">=16.18.1"
},
"engineStrict": true
}