-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
{
"name": "msplit",
"version": "0.1.24",
"scripts": {
"serve": "vue-cli-service serve",
"build-app": "vue-cli-service build --dest dist/app",
"build-lib": "vue-cli-service build --dest dist/lib --target lib --name lib src/lib.ts",
"build": "yarn build-app && yarn build-lib",
"deploy": "yarn build-app && gh-pages -d dist/app",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.1.0"
},
"main": "./dist/lib/lib.common.js",
"files": [
"dist/lib/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"devDependencies": {
"@types/jest": "^23.1.4",
"@vue/cli-plugin-typescript": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "1.0.0-beta.29",
"bootstrap-vue": "^2.0.3",
"gh-pages": "^2.1.1",
"ts-jest": "^23.0.0",
"typescript": "^3.4.3",
"vue-template-compiler": "^2.6.10"
},
"homepage": "https://jianwu.github.io/msplit/",
"repository": {
"type": "git",
"url": "git+https://github.com/jianwu/msplit.git"
},
"bugs": {
"url": "https://github.com/jianwu/msplit/issues"
},
"keywords": [
"vue",
"vuejs",
"split-pane",
"multi-split-pane",
"vue-component",
"typescript",
"Split Panes",
"panes resizer"
],
"license": "MIT"
}