forked from rhwilr/vue-nestable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.47 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
{
"name": "vue-nestable",
"version": "1.1.0-beta.2",
"description": "vue-nestable",
"main": "dist/vue-nestable.js",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -w -c ./docs/rollup.config.js",
"build": "cross-env NODE_ENV=production rollup -c",
"deploy-docs": "cross-env NODE_ENV=production rollup -c ./docs/rollup.config.js; gh-pages -d docs/dist",
"lint": "eslint --ext .js,.vue .",
"pretest": "npm run lint",
"fix": "eslint --ext .js,.vue . --fix",
"test": "jest",
"prepublish": "npm run build",
"postpublish": "npm run deploy-docs"
},
"author": "Ralph Huwiler <[email protected]>",
"homepage": "https://rhwilr.github.io/vue-nestable/",
"license": "MIT",
"keywords": [
"vue",
"vue-nestable",
"vue nestable",
"vue tree"
],
"dependencies": {
"immutability-helper": "^2.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhwilr/vue-nestable"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-minify": "^0.5.0",
"cross-env": "^5.2.0",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"gh-pages": "^2.0.1",
"jest": "^23.6.0",
"postcss-cli": "^6.0.1",
"rollup": "^0.67.4",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-serve": "^0.6.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-plugin-vue": "^4.3.2",
"vue": "2.5.17",
"vue-eslint-parser": "^4.0.3",
"vue-jest": "^3.0.2",
"vue-template-compiler": "2.5.17"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "babel-jest"
}
}
}