-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1007 Bytes
/
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
{
"name": "tyu",
"version": "1.0.6",
"description": "Delightful web testing.",
"repository": {
"url": "egoist/tyu",
"type": "git"
},
"main": "lib/index.js",
"bin": "bin/cli.js",
"files": [
"lib",
"bin"
],
"keywords": [
"vue",
"unit test",
"component",
"jest",
"react"
],
"scripts": {
"test": "npm run lint && jest",
"lint": "xo"
},
"author": "egoist <0x142857@gmail.com>",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-preset-vue-app": "^2.0.0",
"cac": "^4.2.4",
"find-babel-config": "^1.1.0",
"jest": "^22.0.4",
"lodash.merge": "^4.6.0",
"update-notifier": "^2.3.0",
"vue-jest": "^1.4.0"
},
"devDependencies": {
"eslint-config-rem": "^3.0.0",
"xo": "^0.18.0"
},
"xo": {
"extends": "rem",
"envs": [
"jest"
],
"rules": {
"no-warning-comments": 0
}
}
}