-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "jest-os-detection",
"version": "1.3.1",
"description": "Allow to specify on which platform to run jest tests",
"main": "lib/index.js",
"homepage": "https://github.com/doctolib/jest-os-detection",
"repository": "github:doctolib/jest-os-detection",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"version": "tsc --declaration src/* --outDir lib"
},
"author": "qmenoret",
"keywords": [
"jest",
"windows",
"linux",
"mac",
"os",
"detection"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.0.0",
"@types/jest": "^26.0.4",
"@types/node": "^15.6.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.5.2",
"babel-loader": "^8.0.4",
"jest": "^26.5.0",
"prettier": "^2.0.2",
"typescript": "^4.0.3"
},
"jest": {
"roots": [
"<rootDir>/tests"
],
"forceExit": true
}
}