-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "el-admin",
"version": "0.7.3",
"description": "Admin components using element (https://github.com/ElemeFE/element) tookit",
"main": "src/index.js",
"types": "index.d.ts",
"vetur": {
"tags": "vetur-helpers/tags.json",
"attributes": "vetur-helpers/attributes.json"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run test-only",
"check-coverage": "true",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test-only": "mocha test/*.test.js",
"build": "node build.js",
"-precommit": "npm run build && npm test && npm run check-coverage"
},
"author": "Hitesh Khandelwal <[email protected]> (http://www.smartprix.com/)",
"license": "ISC",
"dependencies": {
"inline-attachment": "^2.0.3",
"jsurl2": "^2.1.0",
"lodash": "^4.17.21",
"simplemde": "^1.11.2"
},
"peerDependencies": {
"vue": ">= 2.0.0",
"vutils": ">= 0.6.0"
},
"devDependencies": {
"chai": "^4.3.6",
"element-ui": "^2.3.7",
"eslint": "^5.16.0",
"eslint-config-smartprix": "^3.4.2",
"mocha": "^6.1.4",
"sm-webpack-config": "^1.4.0",
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vutils": "^0.15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprix/el-admin.git"
},
"bugs": {
"url": "https://github.com/smartprix/el-admin/issues"
},
"homepage": "https://github.com/smartprix/el-admin#readme",
"keywords": [
"vue",
"components",
"vue-components",
"element-ui",
"ui-components",
"js"
],
"eslintConfig": {
"extends": "smartprix",
"rules": {}
}
}