-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "jest-environment-jsdom",
"version": "0",
"private": true,
"workspaces": [
"./packages/jest-environment-jsdom",
"./packages/jest-environment-jsdom-example"
],
"scripts": {
"clean": "git clean -Xdf",
"all": "turbo run build test format generate lint attw license-header",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"attw": "turbo run attw",
"format": "turbo run format",
"generate": "turbo run generate",
"license-header": "turbo run license-header"
},
"engineStrict": true,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"packageManager": "[email protected]",
"licenseHeader": {
"licenseType": "apache",
"yearRange": "2023-2025",
"copyrightHolder": "Buf Technologies, Inc."
},
"devDependencies": {
"@bufbuild/license-header": "^0.0.4",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
}
}