-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.52 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
{
"name": "vue-splitjs",
"version": "0.0.4",
"description": "tiny unopinionated utility for resizeable split views, based on split.js",
"main": "./dist/vue-splitjs.min.js",
"watch": {
"test": {
"patterns": ["src", "test"],
"extensions": "js,vue"
}
},
"scripts": {
"test": "mocha-webpack --webpack-config build/webpack.test.config.js test --recursive --require test/.setup",
"dev": "webpack-dev-server --content-base ./dev --env=webpack.dev --open --hot",
"dist": "webpack --env=webpack.dist",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramoonstudio/vue-splitjs.git"
},
"keywords": [
"css",
"split",
"flexbox",
"tiny",
"split-layout",
"vue"
],
"author": "ramoon studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/ramoonstudio/vue-splitjs/issues"
},
"homepage": "https://github.com/ramoonstudio/vue-splitjs#readme",
"devDependencies": {
"avoriaz": "^6.3.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.9",
"jsdom": "^11.6.2",
"jsdom-global": "^3.0.2",
"mocha": "^5.0.0",
"mocha-webpack": "^1.0.1",
"vue": "^2.5.13",
"vue-loader": "^13.7.1",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"npm-watch": "^0.3.0"
},
"dependencies": {
"split.js": "^1.3.5"
},
"files": [
"dist",
"src"
]
}