forked from Qymh/q-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (108 loc) · 3.6 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
{
"private": true,
"workspaces": [
"packages/@qymh/*"
],
"description": "一个高性能的移动端下拉选择插件",
"author": {
"name": "Qymh",
"email": "[email protected]"
},
"scripts": {
"check": "yarn upgrade-interactive --latest",
"lint:js": "eslint . --ext .js,.ts",
"lint:style": "stylelint **/*.css",
"lint": "npm run lint:js && npm run lint:style",
"fix:js": "eslint . --ext .js,.ts --fix",
"fix:style": "stylelint **/*.css --fix",
"fix": "npm run fix:js && npm run fix:style",
"dev:demojs": "rollup -wc build/demojs/dev.js",
"dev:demovue": "rollup -wc build/demovue/dev.js",
"build:demojs": "rollup -c build/demojs/prod.js",
"build:demovue": "rollup -c build/demovue/prod.js",
"build:demo": "npm run build:demojs && npm run build:demovue",
"build:js": "rm -rf packages/@qymh/q-select/dist && node build/package/js.js",
"build:vue": "rm -rf packages/@qymh/vue-q-select/dist && node build/package/vue.js",
"build": "npm run build:js && npm run build:vue",
"pub": "node scripts/publish",
"test": "jest --watchAll --coverage",
"test:clear": "jest --clearCache",
"test:single": "jest --coverage",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"babel:fix": "babel packages/@qymh/vue-q-select/dist/* --out-dir packages/@qymh/vue-q-select/dist --presets=@babel/preset-env"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.0.1",
"conventional-changelog-cli": "^2.0.31",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.8.0",
"eslint-config-qymh": "^1.2.3",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.0.2",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"husky": "^3.1.0",
"inquirer": "^7.0.1",
"jest": "^24.9.0",
"jest-css-modules": "^2.1.0",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^1.19.1",
"puppeteer-core": "^2.0.0",
"rollup": "^1.27.14",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-generate-html-template": "^1.6.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-vue": "^5.1.4",
"semver": "^7.1.1",
"stylelint": "^12.0.1",
"stylelint-config-standard": "^19.0.0",
"terser": "^4.4.3",
"ts-jest": "^24.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.4",
"vconsole": "^3.3.4",
"vue-template-compiler": "^2.6.11",
"ws": "^7.2.1",
"zlib": "^1.0.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(t|j)s": [
"eslint --ext .js,.ts --fix",
"git add"
]
}
}