-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 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
{
"name": "zenlib",
"scripts": {
"build": "lerna exec --ignore \"**/@(storybook|bootstrap)\" -- rollup -c \\$LERNA_ROOT_PATH/rollup.config.js",
"build:watch": "lerna exec --ignore \"**/@(storybook|bootstrap)\" -- rollup -w -c \\$LERNA_ROOT_PATH/rollup.config.js",
"bootstrap": "npx lerna bootstrap",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint \"packages/**/*.{js,vue}\"",
"lint:fix": "eslint --fix \"packages/**/*.{js,vue}\"",
"bundlesize": "npx bundlesize",
"release": "npx lerna version --conventional-commits --no-changelog -y && npx lerna publish from-package -y",
"storybook": "cd packages/_storybook_ && npm run storybook",
"build-storybook": "cd packages/_storybook_ && npm run build",
"build-storybook-branch": "cd packages/_storybook_ && npm run build-branch",
"deploy-storybook": "cd packages/_storybook_ && npm run deploy"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@octokit/rest": "^16.34.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"bootstrap-vue": "^2.0.2",
"bundlesize": "^0.18.0",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"husky": "^3.0.2",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"lerna": "^3.16.4",
"lodash.some": "^4.6.0",
"prettier": "1.18.2",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-vue": "^5.0.1",
"slack-notify": "^0.1.7",
"tslib": "^1.10.0",
"typescript": "^3.5.3",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-multiselect": "^2.1.6",
"vue-template-compiler": "^2.6.10"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/__mocks__/style.js"
},
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "babel-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"packages/**/*.{js,vue}",
"!packages/_storybook_/**",
"!**/node_modules/**",
"!**/dist/**"
]
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {}
}