-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "@toreda/rocketlab",
"version": "0.0.1",
"description": "",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "yarn build:prod",
"build:prod": "yarn gulp --prod",
"build:dev": "yarn gulp --dev",
"test": "yarn jest --coverage --maxWorkers=50%",
"test:dev": "yarn jest --coverage=false --maxWorkers=50%",
"test:silent": "yarn jest --coverage=false --maxWorkers=50% --silent --verbose=false",
"make:docs": "yarn typedoc docs --categorizeByGroup false --entryPoints ./src/index.ts",
"make:depgraph": "yarn madge src/index.ts --image dependency-graph.png"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toreda/rocketlab.git"
},
"keywords": [
"jest",
"typescript",
"test",
"test generator",
"unit tests",
"utils",
"toreda"
],
"author": "Toreda, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/toreda/rocketlab/issues"
},
"resolutions": {
"tough-cookie": "^4.1.3"
},
"homepage": "https://github.com/toreda/rocketlab#readme",
"dependencies": {
"@swc/core": "^1.4.0",
"@swc/jest": "^0.2.36",
"@toreda/build-tools": "^0.8.0",
"@toreda/fate": "^0.6.9",
"@toreda/prettier-config": "^1.0.1",
"@toreda/types": "^2.16.0",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"jsdom": "^24.0.0",
"madge": "^6.1.0",
"prettier": "^3.2.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.7.0",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"prettier": "@toreda/prettier-config"
}