This repository has been archived by the owner on Jun 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.26 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
96
97
98
99
100
101
102
103
104
{
"name": "vscode-jest-test-runner",
"version": "1.0.0",
"description": "Run VS Code tests using Jest Testing Framework",
"repository": "https://github.com/bmealhouse/vscode-jest-test-runner",
"author": "Brent Mealhouse <[email protected]>",
"license": "MIT",
"private": false,
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && jest --lastCommit"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"pkg"
]
},
"lint-staged": {
"*.ts": [
"xo",
"prettier --write"
]
},
"prettier": {
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false
},
"xo": {
"envs": [
"jest"
],
"prettier": true,
"plugins": [
"filenames"
],
"rules": {
"capitalized-comments": "off",
"no-unused-vars": [
"error",
{
"ignoreRestSiblings": true,
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"filenames/match-exported": [
"error",
"kebab",
"^__"
]
}
},
"dependencies": {
"@jest/core": "25.1.0",
"@jest/test-result": "25.1.0",
"jest-environment-vscode": "1.0.0",
"prettier": "1.19.1",
"source-map-support": "0.5.16"
},
"devDependencies": {
"@pika/pack": "0.5.0",
"@pika/plugin-build-node": "0.9.2",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-ts-standard-pkg": "0.9.2",
"@types/jest": "25.1.3",
"@types/source-map-support": "0.5.1",
"eslint": "6.8.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-prettier": "3.1.2",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.7",
"ts-jest": "25.2.1",
"typescript": "3.8.2",
"xo": "0.27.1"
},
"peerDependencies": {
"jest": "24.x || 25.x"
},
"scripts": {
"mlink": "pika-pack && cp -R ./pkg/ ../vscode-shifty/node_modules/vscode-jest-test-runner",
"release": "pika-pack && npm publish ./pkg",
"test": "jest"
}
}