-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.44 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@dgiot/dgiot-component",
"description": "dgiot-component",
"version": "0.0.3",
"author": "h7ml <h7ml@qq.com>",
"license": "Mozilla Public License Version 2.0",
"main": "dist/dgiot-component.js",
"module": "dist/dgiot-component.js",
"browser": "dist/dgiot-component.js",
"unpkg": "dist/dgiot-component.js",
"jsdelivr": "dist/dgiot-component.js",
"private": false,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"lint:style": "stylelint **/*.{vue,scss} --fix"
},
"dependencies": {
"babel-plugin-component": "^1.1.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"element-ui": "^2.15.6",
"loadsh": "^0.0.4",
"md5": "^2.3.0",
"moment": "^2.29.1",
"sass": "^1.32.8",
"sass-loader": "^7.0.0",
"vue": "^2.5.11",
"vuex": "^3.6.2",
"vuex-persistedstate": "^4.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"homepage": "https://github.com/dgiot/dgiot-component.git",
"repository": {
"type": "git",
"url": "git+https://github.com/dgiot/dgiot-component.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "6.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^1.1.4",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "9.0.2",
"stylelint-config-recess-order": "^2.5.0",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^3.0.0"
}
}