-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 952 Bytes
/
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
{
"name": "@lifeomic/jest-config",
"version": "0.0.0",
"main": "index.js",
"types": "index.d.ts",
"repository": {},
"author": "Development <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"jest-preset.js",
"index.d.ts",
"index.js"
],
"scripts": {
"lint": "eslint . --cache",
"postlint": "yarn tsc",
"pretest": "yarn lint",
"test": "jest",
"prepublishOnly": "yarn tsc -p tsconfig.build.json"
},
"devDependencies": {
"@lifeomic/eslint-config-standards": "^3.2.2",
"@lifeomic/typescript-config": "^3.0.0",
"@types/jest": "^29.5.3",
"conventional-changelog-conventionalcommits": "^6.1.0",
"eslint": "^8.46.0",
"expect": "^29.6.2",
"jest": "^29.6.2",
"semantic-release": "^21.0.7",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"jest": ">=29",
"expect": ">=29"
}
}