-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
{
"name": "jest-environment-jsdom-latest",
"version": "26.6.2",
"repository": {
"type": "git",
"url": "https://github.com/dmnsgn/jest-environment-jsdom-latest.git"
},
"license": "MIT",
"exports": {
".": "./build/index.js",
"./package.json": "./package.json"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build:js": "node ./scripts/build.js",
"build:ts": "node ./scripts/buildTs.js",
"build": "npm run build:js && npm run build:ts",
"prepublishOnly": "npm run build"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "website/**/*.js",
"options": {
"trailingComma": "es5"
}
},
{
"files": ".yarnrc.yml",
"options": {
"singleQuote": false
}
}
]
},
"dependencies": {
"@jest/environment": "^26.6.2",
"@jest/fake-timers": "^26.6.2",
"@jest/types": "^26.6.2",
"@types/node": "*",
"jest-mock": "^26.6.2",
"jest-util": "^26.6.2",
"jsdom": "latest"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/jsdom": "^16.2.10",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"chalk": "^4.0.0",
"execa": "^5.0.0",
"glob": "^7.1.1",
"globby": "^11.0.0",
"micromatch": "^4.0.4",
"prettier": "^2.1.1",
"read-pkg": "^5.2.0",
"string-length": "^4.0.1",
"strip-json-comments": "^3.1.1",
"throat": "^6.0.1",
"typescript": "^4.0.2",
"yarn": "^1.22.10"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
},
"snowdev": {
"release": {
"types": false,
"format": false,
"lint": false,
"docs": false
}
}
}