forked from rhwilr/vue-nestable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.2 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
{
"name": "vue-nestable",
"version": "2.6.0",
"description": "vue-nestable",
"author": "Ralph Huwiler <ralph@huwiler.rocks>",
"homepage": "https://rhwilr.github.io/vue-nestable/",
"license": "MIT",
"module": "dist/index.umd.js",
"main": "dist/index.umd.min.js",
"unpkg": "dist/index.iife.min.js",
"jsdelivr": "dist/index.iife.min.js",
"keywords": [
"vue",
"vue-nestable",
"vue nestable",
"vue tree"
],
"scripts": {
"dev": "webpack-dev-server --mode development --open --hot",
"build": "rm -rf ./dist && bili",
"build:example": "rm -rf ./build && webpack --mode production --progress --hide-modules",
"deploy-docs": "npm run build:example; gh-pages -d build",
"test": "jest",
"lint": "eslint --ext .js,.vue .",
"fix": "eslint --ext .js,.vue . --fix",
"prepublish": "npm run build",
"postpublish": "npm run deploy-docs",
"pretest": "npm run lint"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie < 11"
],
"dependencies": {
"immutability-helper": "^3.1.1",
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"bili": "^4.10.1",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^5.1.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.5.4",
"pre-commit": "^1.2.2",
"rollup-plugin-vue": "^5.1.9",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-jest": "^3.0.6",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "babel-jest"
}
},
"pre-commit": [
"test"
]
}