-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.82 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
{
"name": "dts-jest",
"version": "26.0.2",
"description": "A preprocessor for Jest to snapshot test TypeScript declaration (.d.ts) files",
"keywords": [
"jest",
"jest-transform",
"test",
"typescript",
"typescript-declarations"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"dts-jest-remap": "bin/dts-jest-remap.js"
},
"repository": "https://github.com/ikatyang/dts-jest",
"homepage": "https://github.com/ikatyang/dts-jest#readme",
"author": {
"name": "Ika",
"email": "ikatyang@gmail.com",
"url": "https://github.com/ikatyang"
},
"license": "MIT",
"scripts": {
"prepublish": "yarn run build",
"lint": "prettier src --check",
"test": "jest -c ./jest.json --no-cache",
"test-integration": "jest -c ./tests/jest.json --no-cache",
"remap-integration": "node ./bin/dts-jest-remap ./tests/example.ts --rename '{{basename}}.snap.{{extname}}'",
"prebuild": "rm -rf ./lib",
"build": "tsc -p ./tsconfig.build.json",
"release": "standard-version"
},
"dependencies": {
"globby": "^6.1.0",
"jest-snapshot-parser": "^1.0.0",
"lodash.intersection": "^4.4.0",
"make-dir": "^1.0.0",
"pretty-format": "^21.0.0",
"ts-comment": "^1.1.0",
"tslib": "^2.4.0",
"yargs": "^14.2.3"
},
"devDependencies": {
"@types/globby": "6.1.0",
"@types/lodash.intersection": "4.4.6",
"@types/make-dir": "1.0.3",
"@types/node": "12.12.6",
"@types/pretty-format": "20.0.1",
"@types/yargs": "8.0.3",
"jest": "28.1.0",
"prettier": "2.6.2",
"standard-version": "9.3.2",
"ts-jest": "28.0.2",
"typescript": "5.0.3"
},
"peerDependencies": {
"jest": ">= 28.0.0",
"typescript": ">= 4.0.0"
},
"engines": {
"node": ">= 12"
},
"files": [
"/bin/**/*",
"/lib/**/*",
"/*.js"
]
}