This repository has been archived by the owner on Apr 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.46 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest --runInBand",
"pretest": "yarn clean",
"lint": "eslint --fix packages/**/*.js",
"clean": "rimraf test/*",
"pub": "lerna publish --yes"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/testSetup.js"
],
"testPathIgnorePatterns": [
"/template/",
"/test/",
"/temp/",
"/scripts/",
".*.helper.js"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"packages/**/bin/*": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@vue/cli": "^3.3.0",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-plugin-typescript": "^3.3.0",
"@vue/cli-plugin-unit-jest": "^3.3.0",
"@vue/cli-plugin-unit-mocha": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"@vue/cli-test-utils": "^3.3.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"debug": "^4.1.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-vue": "^5.1.0",
"eslint-plugin-vue-libs": "^3.0.0",
"globby": "^8.0.1",
"jest": "^23.4.1",
"lerna": "^3.4.3",
"lint-staged": "^8.1.0",
"memfs": "^2.6.0",
"rimraf": "^2.6.2",
"vue-loader": "^15.4.1",
"vue-property-decorator": "^7.3.0",
"webpack-merge": "^4.1.2"
}
}