-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.35 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
{
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"test": "jest --runInBand",
"pretest": "yarn clean",
"lint": "eslint --fix packages/**/*.js",
"clean": "rimraf test/*"
},
"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": {
"@babel/core": "^7.2.2",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@vue/cli": "^4.1.2",
"@vue/cli-plugin-typescript": "^4.1.2",
"@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-plugin-unit-mocha": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/cli-test-utils": "^4.1.2",
"@vue/test-utils": "^1.0.0-beta.31",
"babel-core": "^7.0.0-0",
"chai": "^4.2.0",
"debug": "^4.1.1",
"eslint": "^5.12.0",
"eslint-plugin-vue-libs": "^3.0.0",
"globby": "^9.0.0",
"jest": "^25.1.0",
"lint-staged": "^8.1.0",
"memfs": "^2.14.2",
"mocha-webpack": "^1.1.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2",
"vue": "^2.6.11",
"vue-property-decorator": "^7.3.0",
"yorkie": "^2.0.0",
"upath": "^1.1.0"
}
}