-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@skills17/jest-helpers",
"version": "1.1.0",
"description": "Provides Jest helpers for usage in a skills competition environment.",
"main": "lib/index.js",
"files": [
"lib",
"bin"
],
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "babel src --out-dir lib --delete-dir-on-start --extensions \".ts\"",
"build:js:watch": "npm run build:js -- --watch --verbose",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"lint": "tsc --noEmit && xo .",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build:js && jest",
"test:watch": "npm test -- --watch",
"test:update": "UPDATE_EXPECTED_OUTPUT=1 npm run test",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skills17/jest-helpers.git"
},
"author": "Sebastian Häni <haeni.sebastian@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/skills17/jest-helpers/issues"
},
"homepage": "https://github.com/skills17/jest-helpers#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.18.1",
"@types/uniqid": "^5.3.0",
"babel-jest": "^30.1.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"xo": "^1.2.2"
},
"dependencies": {
"@jest/reporters": "^30.1.3",
"@jest/test-result": "^30.1.3",
"@skills17/task-config": "^3.0.1",
"@skills17/test-result": "^2.1.0",
"@skills17/test-result-printer": "^2.1.2",
"uniqid": "^5.3.0"
},
"xo": {
"rules": {
"unicorn/prefer-module": 0,
"import-x/extensions": 0
}
},
"peerDependencies": {
"jest": ">=30.1.3"
}
}