-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.76 KB
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
{
"name": "jest-test-utils",
"version": "0.0.1",
"description": "Utilities for tests using jests",
"author": "atheck",
"license": "MIT",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly --project ./src",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline --ignore \"**/*.test.ts,**/*.test.tsx,**/*.spec.ts,**/*.spec.tsx\"",
"update": "npx -y npm-check-updates -i --install never && npx -y npm-check-updates -i --target minor --install never && npx -y npm-check-updates -i --target patch --install never && npm update && npm audit signatures",
"lint": "biome lint src --max-diagnostics 200 && npx eslint --ext .ts,.tsx ./src",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-modules-commonjs": "7.28.6",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-typescript": "7.28.5",
"@biomejs/biome": "2.4.10",
"@jest/globals": "30.3.0",
"@types/node": "25.5.2",
"eslint": "9.39.4",
"eslint-config-heck": "9.3.1",
"i18next": "25.10.10",
"jest": "30.3.0",
"semantic-release": "25.0.3",
"ts-jest": "29.4.9",
"tslib": "2.8.1",
"typescript": "6.0.2"
},
"homepage": "https://github.com/atheck/jest-test-utils",
"repository": {
"type": "git",
"url": "https://github.com/atheck/jest-test-utils.git"
},
"keywords": [
"jest",
"utilities",
"test"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"provenance": true
}
}