-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 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
{
"name": "json-tree-pro",
"version": "0.0.3",
"description": "JSON tree view for Vue",
"author": "showmethecode@foxmail.com",
"scripts": {
"test:unit": "vue-cli-service test:unit",
"deploy": "bash scripts/deploy.sh",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"build": "vue-cli-service build --target lib --name JsonTree --dest lib src/index.js",
"release": "standard-version",
"publish": "npm publish --registry https://www.npmjs.com/"
},
"main": "lib/JsonTree.common.js",
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-plugin-unit-jest": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"@vuepress/plugin-back-to-top": "^1.7.1",
"async-validator": "^1.11.5",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.3.0",
"element-ui": "^2.14.1",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^7.1.0",
"lint-staged": "^10.5.1",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"standard-version": "^9.1.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.7.1"
},
"bugs": {
"url": "https://github.com/mathink12/json-tree/issues"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/mathink12/json-tree#readme",
"keywords": [
"JSON",
"tree",
"vue",
"view"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathink12/json-tree.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}