-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "@js-soft/ts-utils",
"version": "2.3.6",
"description": "Typescript Utils",
"homepage": "https://js-soft.com/",
"repository": "github:js-soft/ts-utils",
"license": "MIT",
"author": "j&s-soft GmbH",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "tsc",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint",
"lint:prettier": "prettier --check .",
"test": "jest"
},
"jest": {
"maxWorkers": 1,
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 60000
},
"dependencies": {
"eventemitter2": "^6.4.9",
"json-stringify-safe": "^5.0.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "^2.0.4",
"@js-soft/license-check": "^1.0.9",
"@types/jest": "^30.0.0",
"@types/json-stringify-safe": "^5.0.3",
"@types/node": "^24.7.2",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}