-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "jerri-ui",
"version": "0.8.3",
"description": "jerrisoft company ui structure",
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lib:build": "vue-cli-service build --type esm",
"lib:publish": "npm run lib:build && npm publish",
"lib:umd:build": "vue-cli-service build --target lib --dest lib src/components/index.js",
"lib:umd:publish": "npm run lib:umd:build && npm publish",
"test:unit": "vue-cli-service test:unit",
"prepare": "husky install",
"commit": "git add . && cz-customizable",
"changelog": "conventional-changelog -p cz-config.js -i CHANGELOG.md -s -r 0"
},
"main": "lib/index/index.js",
"keywords": [
"jerri"
],
"author": "jerri",
"license": "ISC",
"dependencies": {
"async-validator": "^3.2.4",
"core-js": "^3.6.4",
"html2canvas": "^1.0.0-rc.5",
"jspdf": "^2.5.1",
"vue": "^2.6.11",
"vue-awesome-swiper": "^3.1.3",
"vue-cropper": "^0.4.9",
"vue-popperjs": "^2.3.0",
"vue-router": "^3.1.6",
"vuedraggable": "^2.23.0",
"vuex": "^3.1.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@vue/cli-plugin-babel": "^4.3.0",
"@vue/cli-plugin-unit-mocha": "^4.3.0",
"@vue/cli-service": "^4.3.0",
"@vue/test-utils": "1.0.0-beta.31",
"chai": "^4.1.2",
"commitizen": "^4.3.0",
"commitlint": "^17.7.1",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^5.16.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^5.0.3",
"husky": "^8.0.3",
"node-sass": "^6.0.0",
"sass-loader": "^10.0.0",
"sass-resources-loader": "^2.0.3",
"vue-loader": "^17.2.2",
"vue-template-compiler": "^2.6.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}