forked from vuestorefront/storefront-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "root",
"private": true,
"version": "0.10.5",
"description": "",
"main": "index.js",
"scripts": {
"create-component": "node ./scripts/create-component.js",
"storybook": "cd packages/vue && yarn storybook",
"vue-docs:dev": "cd packages/vue && yarn docs:dev",
"create-gitlog": "node ./scripts/changelog.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuestorefront/storefront-ui.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuestorefront/storefront-ui/issues"
},
"homepage": "https://github.com/vuestorefront/storefront-ui#readme",
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lerna run precommit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "lerna run test:unit",
"postpublish": "yarn create-gitlog"
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"file-save": "^0.2.0",
"fse": "^4.0.1",
"glob": "^7.1.4",
"husky": "^3.1.0",
"lerna": "^3.16.4",
"prompts": "^2.1.0",
"uppercamelcase": "^3.0.0"
}
}