-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "jest-without-globals",
"version": "0.0.3",
"description": "Explicitly import Jest globals",
"main": "dist/index.js",
"module": "dist/jest-without-globals.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"author": "Anton Gilgur",
"license": "Apache-2.0",
"homepage": "https://github.com/agilgur5/jest-without-globals",
"repository": {
"type": "git",
"url": "https://github.com/agilgur5/jest-without-globals.git"
},
"bugs": {
"url": "https://github.com/agilgur5/jest-without-globals/issues"
},
"keywords": [
"jest",
"globals",
"export",
"import",
"module",
"explicit",
"test"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:pub": "npm run build && npm pack",
"pub": "npm run build && npm publish",
"changelog": "changelog-maker"
},
"peerDependencies": {
"jest": "23 - 25"
},
"dependencies": {},
"devDependencies": {
"@agilgur5/changelog-maker": "^3.0.0",
"@types/jest": "^24.0.23",
"tsdx": "^0.12.3",
"typescript": "^3.5.2"
}
}