-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "etc-fe-spec",
"private": true,
"description": "etcetera--前端编码规范工程化",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"init": "pnpm install --no-frozen-lockfile",
"clean": "lerna clean && rm -rf node_modules",
"test": "lerna run test --passWithNoTests",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"deploy": "bash deploy.sh",
"publish": "lerna publish",
"lint": "markdownlint README.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [
"etc",
"fe spec"
],
"author": "etcetera",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"husky": "^8.0.3",
"lerna": "^6.6.2",
"markdownlint": "^0.32.0",
"pnpm": "^8.10.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.3",
"typescript": "^5.2.2",
"vue-template-compiler": "^2.7.15",
"vuepress": "^1.9.10",
"vuepress-plugin-one-click-copy": "^1.0.6",
"vuepress-plugin-zooming": "^1.1.8"
},
"dependencies": {
"conventional-changelog-conventionalcommits": "^7.0.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}