-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.62 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
{
"name": "rds-vue",
"version": "0.0.40",
"scripts": {
"serve": "vue-cli-service serve ./src/__demo__/dev.ts",
"build": "vue-cli-service build --target=lib --name=rdsvue ./src/index.ts",
"lint": "eslint --ext .ts,.tsx,.vue --fix src",
"prebuild": "rm -rf ./types && tsc -p ./tsconfig.json",
"postbuild": "rm -rf ./types/__demo__",
"release": "standard-version -i CHANGELOG.md -r patch",
"cm": "git-cz",
"prepublishOnly": "npm run build && npm run release && git push"
},
"main": "./dist/rdsvue.umd.min.js",
"files": [
"dist",
"types"
],
"keywords": [
"vue",
"kaolafed",
"rde"
],
"author": "kaolafed",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,vue}": [
"npm run lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "^0.18.0",
"dayjs": "^1.8.14",
"element-kaola": "3.1.2",
"qs": "^6.7.0",
"vue-clipboard2": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/chai": "^4.1.0",
"@types/mocha": "^5.2.4",
"@types/qs": "^6.5.2",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0-beta.3",
"@vue/babel-preset-jsx": "^1.0.0-beta.3",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-typescript": "^3.5.0",
"@vue/cli-plugin-unit-mocha": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"element-ui": "^2.10.1",
"eslint": "^5.8.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-vue": "^5.0.0",
"husky": "^3.0.2",
"lint-staged": "^8.1.4",
"lodash.clonedeep": "^4.5.0",
"lodash.find": "^4.6.0",
"lodash.get": "^4.4.2",
"lodash.uniq": "^4.5.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.1.0",
"standard-version": "^7.0.0",
"style-resources-loader": "^1.2.1",
"typescript": "^3.2.1",
"vue": "^2.6.10",
"vue-class-component": "^6.0.0",
"vue-cli-plugin-style-resources-loader": "^0.1.3",
"vue-property-decorator": "^8.0.0",
"vue-router": "^3.0.6",
"vue-template-compiler": "^2.5.21",
"webpack-bundle-analyzer": "^3.3.2"
},
"types": "./types/index.d.ts"
}