-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (75 loc) · 2.31 KB
/
package.json
File metadata and controls
76 lines (75 loc) · 2.31 KB
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
{
"name": "qmc-ciqtek-input",
"version": "1.0.1",
"description": "",
"author": "https://github.com/tigoo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tigoo/ciqtek-input.git"
},
"keywords": [
"vue",
"component"
],
"files": [
"src",
"dist"
],
"main": "dist/ciqtek-input.umd.js",
"module": "dist/ciqtek-input.esm.js",
"unpkg": "dist/ciqtek-input.min.js",
"types": "src/ciqtek-input.d.ts",
"scripts": {
"dev": "vue-styleguidist server",
"test": "jest --verbose",
"build": "npm run build:unpkg & npm run build:es & npm run build:umd",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/ciqtek-input.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/ciqtek-input.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/ciqtek-input.min.js"
},
"dependencies": {
"element-ui": "^2.15.6",
"rollup-plugin-less": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.4.3",
"@femessage/github-release-notes": "latest",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"babel-plugin-component": "^1.1.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^3.0.1",
"jest": "^24.8.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^8.1.0",
"prettier": "1.18.2",
"rollup": "^2.41.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "^4.7.2",
"standard-version": "^6.0.1",
"stylelint": "^9.10.0",
"stylelint-config-standard": "^18.2.0",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-styleguidist": "^3.16.3",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.29.6"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 8.3.0",
"npm": ">= 3.0.0"
}
}