-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
95 lines (95 loc) · 2.64 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "create-jest-runner",
"version": "0.12.3",
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./package.json": "./package.json",
"./generator/index.js": "./generator/index.js"
},
"author": "Rogelio Guzman <rogelioguzmanh@gmail.com>",
"contributors": [
{
"name": "Lok Shun Hung",
"url": "https://github.com/lokshunhung"
}
],
"description": "A simple way of creating a Jest runner",
"license": "MIT",
"repository": "https://github.com/jest-community/create-jest-runner.git",
"homepage": "https://github.com/jest-community/create-jest-runner",
"files": [
"build/",
"generator/"
],
"scripts": {
"test": "jest --no-color",
"lint": "eslint .",
"prettier:run": "prettier '*.md' '.github/**' '*.json' '**/package.json' '.vscode/*.json' 'generator/fixtures/*'",
"prettier:check": "yarn prettier:run --check",
"prettier:write": "yarn prettier:run --write",
"watch": "yarn build --watch",
"build": "babel lib --ignore '**/*.test.js,integration' --out-dir build --extensions '.ts'",
"build-types": "tsc",
"prepare": "yarn build && yarn build-types"
},
"dependencies": {
"chalk": "^4.1.0",
"jest-worker": "^29.5.0",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@jest/test-result": "^29.0.0",
"@tsconfig/node14": "^14.0.0",
"@types/node": "^14.18.23",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.0.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.0.0",
"jest": "^29.0.0",
"jest-runner": "^29.0.0",
"prettier": "^2.0.5",
"semver": "^7.3.8",
"strip-ansi": "^6.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@jest/test-result": "^28.0.0 || ^29.0.0",
"jest-runner": "^28.0.0 || ^29.0.0"
},
"peerDependenciesMeta": {
"@jest/test-result": {
"optional": true
},
"jest-runner": {
"optional": true
}
},
"bin": "./generator/index.js",
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "all"
},
"resolutions": {
"@types/node@*": "^14.18.23"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"packageManager": "yarn@3.8.4"
}