forked from vuese/vuese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.64 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "vuese-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "yarn lint && jest --verbose",
"build": "yarn lint && node ./scripts/build.js",
"prepublishOnly": "yarn toc && yarn build",
"toc": "markdown-toc -i README.md",
"lint": "tslint --project tsconfig.json --fix",
"commit": "git-cz",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@types/babel__generator": "^7.0.0",
"@types/babel__traverse": "^7.0.0",
"@types/jest": "^23.3.2",
"@types/node": "^10.11.0",
"all-contributors-cli": "^5.6.0",
"chalk": "^2.4.2",
"conventional-changelog-cli": "^2.0.11",
"cz-emoji": "^1.1.2",
"dts-bundle": "^0.7.3",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"husky": "^1.0.0",
"is-builtin-module": "^3.0.0",
"jest": "^24.5.0",
"lerna": "^3.10.5",
"lint-staged": "^7.3.0",
"markdown-toc": "^1.2.0",
"prettier": "^1.14.3",
"prettier-tslint": "^0.4.0",
"rollup": "^1.1.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-typescript2": "^0.19.0",
"ts-jest": "^23.10.1",
"tslint": "^5.11.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.0.3"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"types": [
{
"emoji": "\t🌟",
"code": ":star2:",
"description": "\tA new feature",
"name": "feat"
},
{
"emoji": "\t🐞",
"code": ":beetle:",
"description": "\tA bug fix",
"name": "fix"
},
{
"emoji": "\t🎨",
"code": ":art:",
"description": "\tNeither fixes a bug nor adds a feature",
"name": "refactor"
},
{
"emoji": "\t🚓",
"code": ":police_car:",
"description": "\t Testing improved with new or fixed tests",
"name": "test"
},
{
"emoji": "\t🔩",
"code": ":nut_and_bolt:",
"description": "\tDoesn't modify src or test files",
"name": "chore"
},
{
"emoji": "\t💰",
"code": ":moneybag:",
"description": "\tImproves performance with this change",
"name": "perf"
},
{
"emoji": "\t🚥",
"code": ":traffic_light:",
"description": "\tCI config files and scripts",
"name": "ci"
},
{
"emoji": "\t♻️",
"code": ":recycle:",
"description": "\tOptimize workflow",
"name": "workflow"
},
{
"emoji": "\t🚀",
"code": ":rocket:",
"description": "\tBuild system config or external dependencies",
"name": "build"
},
{
"emoji": "\t📚",
"code": ":books:",
"description": "\tDocumentation change",
"name": "docs"
},
{
"emoji": "\t💊",
"code": ":pill:",
"description": "\tReverts a previous commit",
"name": "revert"
},
{
"emoji": "\t🎉",
"code": ":tada:",
"description": "\tInitialize a new package.",
"name": "init"
}
],
"scopes": [
"cli",
"parser",
"markdown-render"
]
}
}
}