-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 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
{
"name": "@kassaila/vue-json-editor",
"version": "0.4.0",
"description": "JSON visual editor - built as a Vue.js component",
"keywords": [
"vue",
"json",
"edit",
"editor",
"vue-component"
],
"homepage": "https://github.com/Kassaila/vue-json-editor",
"bugs": {
"url": "https://github.com/Kassaila/vue-json-editor/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Dmytro Symonov",
"email": "kasela.kassaila@gmail.com"
},
"main": "./dist/vue-json-editor.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kassaila/vue-json-editor.git"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint:js": "npx eslint --fix **/*.{js,vue}",
"format": "npx prettier . --write --ignore-unknown",
"pre-commit": "npx lint-staged -r",
"dev": "npx gulp",
"test": "npx gulp build --log-level -LLLL",
"build": "npx gulp build"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/runtime": "^7.12.5",
"autoprefixer": "^10.2.1",
"babel-loader": "^8.2.2",
"cssnano": "^4.1.10",
"del": "^6.0.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.4.1",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"node-notifier": "^9.0.0",
"postcss": "^8.2.4",
"prettier": "^2.2.1",
"sass": "^1.32.2",
"vue": "^2.6.12",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.12.3"
},
"dependencies": {
"vuedraggable": "^2.24.3"
}
}