-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.01 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
{
"name": "jest-invert",
"version": "0.4.1",
"description": "Determine the integrity of your Jest unit tests by auto-inverting your arguments to Jest.expect()",
"author": "Denny S. Temple <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/dentemple/jest-invert#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dentemple/jest-invert.git"
},
"bugs": {
"url": "https://github.com/dentemple/jest-invert/issues"
},
"keywords": [
"micro-library",
"jest",
"test",
"invert",
"tdd",
"typescript"
],
"publishConfig": {
"access": "public",
"audit-level": "moderate"
},
"---": "",
"main": "dist/jest-invert.cjs.js",
"browser": "dist/jest-invert.umd.js",
"unpkg": "dist/jest-invert.umd.min.js",
"module": "dist/jest-invert.es.js",
"types": "dist/jest-invert.d.ts",
"files": [
"dist"
],
"----": "----",
"scripts": {
"build": "npm run clean && rollup --c rollup.config.js --compact",
"clean": "rimraf .cache && rimraf dist",
"---": "----",
"prepublish": "npm run build",
"publish": "npm publish",
"----": "----",
"test": "jest -i",
"test:watch": "jest -i --watch"
},
"peerDependencies": {
"jest": ">=29.3.1"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@tsconfig/node14": "^1.0.3",
"@tsconfig/node16": "^1.0.3",
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^29.2.4",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"npm-packlist": "^7.0.4",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,md}": [
"prettier --single-quote --no-semi --write",
"git add"
]
}
}