-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
108 lines (108 loc) · 3.14 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
{
"name": "vue-egret",
"version": "1.4.2",
"author": "Hsuna",
"description": "Egret MVVM",
"main": "dist/vue-egret.common.js",
"module": "dist/vue-egret.esm.js",
"unpkg": "dist/vue-egret.js",
"typings": "types/index.d.ts",
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --config ./build/webpack.test.js --mode=development --progress",
"libs": "webpack --config ./build/webpack.libs.js",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"docs:dev": "vuepress dev docs --temp .temp --no-cache --debug",
"docs:build": "vuepress build docs",
"lint": "eslint src --fix --ext .js,.ts",
"lint:packages": "eslint packages --fix --ext .js,.ts",
"lint:test": "eslint test --fix --ext .js,.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz"
},
"keywords": [
"vue",
"Egret"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hsuna/vue-egret/issues"
},
"homepage": "https://github.com/hsuna/vue-egret#readme",
"repository": {
"type": "git",
"url": "https://github.com/hsuna/vue-egret.git"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@rollup/plugin-alias": "2.2.0",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-replace": "2.3.2",
"@rollup/plugin-typescript": "^8.2.0",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"autoprefixer": "^9.4.2",
"babel-loader": "^8.0.6",
"commitizen": "^4.2.3",
"conventional-changelog-cli": "^2.1.1",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^3.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.21.0",
"eslint-plugin-prettier": "^3.3.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"husky": "4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rollup": "^2.7.3",
"rollup-plugin-analyzer": "^3.3.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-strip": "^1.2.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "5.1.6",
"ts-loader": "^6.0.4",
"typescript": "^3.6.2",
"url-loader": "^1.1.2",
"vuepress": "^1.5.4",
"webpack": "^4.28.3",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{src,packages,test}/**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
]
}