-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "extend-expect",
"description": "Types and a helper for extending Jest's expect",
"author": "Andrew Aylett",
"version": "3.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/andrewaylett/extend-expect.git"
},
"engines": {
"node": ">=18"
},
"type": "module",
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "npm run buildonly",
"buildonly": "tsc -b --verbose .",
"clean": "rm -rf build dist",
"dev": "npm run lint:fix && npm run build",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"postbuild": "npm run test",
"prepare": "npm run buildonly",
"posttest": "prepackage-checks && downgrade-build build",
"prepublishOnly": "npm run clean && npm run build",
"pretest": "npm run lint",
"test": "npm run test:packages && npm run test:extensions",
"test:packages": "node --loader ts-node/esm test/packages.test.ts",
"test:extensions": "node --loader ts-node/esm test/extensions.test.ts"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@tsconfig/node18": "18.2.4",
"@types/node": "20.16.11",
"downgrade-build": "1.0.0",
"eslint": "8.57.1",
"eslint-config-andrewaylett": "3.1.0",
"expect": "29.7.0",
"jest-matcher-utils": "29.7.0",
"prepackage-checks": "0.1.2",
"test-in-build": "0.2.0",
"ts-node": "10.9.2",
"typescript": "5.6.2"
},
"peerDependencies": {
"expect": "^29.7",
"jest-matcher-utils": "^29"
}
}