-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·120 lines (120 loc) · 4.24 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
110
111
112
113
114
115
116
117
118
119
120
{
"name": "panda-framework",
"version": "0.0.18",
"description": "A Vue.js 2.0 Web UI Toolkit",
"main": "lib/panda-framework.common.js",
"files": [
"lib",
"src",
"packages"
],
"scripts": {
"dev": "webpack-dev-server --progress --history-api-fallback --config build/webpack.config.dev.js",
"start": "npm run dev",
"lint": "eslint --ext .js --ext .vue src --ext .vue packages --ext .vue --ext .js doc --ext .vue",
"lint:fix": "eslint --ext .js,.vue src doc test packages --fix",
"lint:staged": "lint-staged",
"csslint": "stylelint 'packages/**/*.scss'",
"csslint:fix": "stylelint 'packages/**/*.scss' --fix",
"test:unit": "jest --config test/jest.config.js",
"test": "npm run lint && npm run test:unit",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand --config test/jest.config.js",
"docs:build": "npm run build:icon && webpack --config build/webpack.config.doc.js",
"new": "node script/create-component.js",
"clean": "rimraf lib && rimraf packages/*/lib && rimraf test/**/coverage",
"pub": "npm publish",
"create-json": "node build/bin/build-component.js",
"build:icon": "node build/bin/iconInit",
"build:utils": "cross-env BABEL_ENV=utils babel src --out-dir lib --ignore src/index.js",
"dist": "npm run clean && webpack --config build/webpack.conf.js && webpack --config build/webpack.common.js && webpack --config build/webpack.component.js && npm run build:utils && npm run build:theme",
"build:theme": " node build/bin/gen-cssfile && gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk"
},
"author": "",
"license": "ISC",
"dependencies": {
"deepmerge": "^4.2.2",
"element-ui": "^2.13.2",
"stylelint": "^13.6.1",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"throttle-debounce": "^2.1.0",
"tslib": "^2.0.0",
"vue": "2.6.10"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-jsx-v-model": "^2.0.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "5.0.4",
"cp-cli": "^2.0.0",
"cross-env": "^7.0.2",
"css-loader": "2.1.1",
"docsearch.js": "^2.6.3",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-loader": "2.2.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "5.2.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "4.2.0",
"file-save": "^0.2.0",
"friendly-errors-webpack-plugin": "1.7.0",
"highlight.js": "^9.18.1",
"html-webpack-plugin": "3.2.0",
"husky": "2.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "24.9.0",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "8.2.1",
"markdown-it-anchor": "^5.2.5",
"markdown-it-chain": "^1.3.0",
"markdown-it-container": "^2.0.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.12.0",
"progress-bar-webpack-plugin": "^2.1.0",
"rimraf": "^3.0.2",
"sass-loader": "7.2.0",
"sass-resources-loader": "^2.0.3",
"style-loader": "0.23.1",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"terser-webpack-plugin": "^3.0.2",
"transliteration": "^2.1.8",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"uglify-es": "3.3.9",
"url-loader": "1.1.2",
"vue-jest": "^3.0.4",
"vue-loader": "15.7.0",
"vue-markdown": "^2.2.4",
"vue-router": "3.0.6",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "2.6.10",
"webpack": "4.39.2",
"webpack-cli": "3.3.6",
"webpack-dev-server": "3.8.0",
"webpack-merge": "4.2.1",
"webpack-node-externals": "^1.7.2"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --ignore-path .gitignore --fix"
]
},
"ignore": []
}
}