This repository was archived by the owner on Jan 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
{
"private": true,
"workspaces": [
"backpacks/*"
],
"scripts": {
"lint": "eslint ./backpacks/*/src/**/*.{js,vue}",
"lint-fix": "lint --fix",
"build": "lerna run build",
"test": "node build/run-tests.js",
"test:unix": "cross-env NODE_ENV=test jest",
"test:win32": "cross-env NODE_ENV=test jest -i",
"test:coverage": "yarn test --coverage",
"dev": "vue-cli-service serve --open",
"docs:dev": "vuepress dev docs --port 3005",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "https://github.com/Himself65/kuen.git"
},
"author": {
"name": "Himself65",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Himself65/kuen/issues"
},
"homepage": "https://himself65.github.io/kuen",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.12",
"@types/vue": "^2.0.0",
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.1",
"@vue/cli-plugin-unit-jest": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"@vue/test-utils": "^1.0.0-beta.26",
"avoriaz": "^6.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"babel-polyfill": "^6.26.0",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.11.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-loader": "^2.1.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",
"jest": "^23.6.0",
"jest-css-modules": "^1.1.0",
"jest-serializer-vue": "^2.0.2",
"lerna": "^3.6.0",
"regenerator-runtime": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.2",
"vue": "^2.5.18",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.5.18",
"vuepress": "^0.14.8"
},
"peerDependencies": {
"vue": "^2.5.10"
}
}