-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.91 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
64
65
66
{
"name": "iwf-ts-sdk",
"version": "1.1.0",
"description": "TypeScript SDK for the iWF workflow engine",
"main": "dist/iwf/index.js",
"types": "dist/iwf/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"iwf",
"workflow"
],
"homepage": "https://github.com/indeedeng/iwf-ts-sdk",
"bugs": {
"url": "https://github.com/indeedeng/iwf-ts-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indeedeng/iwf-ts-sdk.git"
},
"license": "MIT",
"author": "Indeed Engineering",
"scripts": {
"code-gen": "./scripts/idl-code-gen.sh",
"build": "tsc",
"typecheck": "tsc --noEmit && tsc --noEmit -p test/tsconfig.json",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage",
"test:integ": "jest --config jest.integ.config.js --runInBand",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build",
"preversion": "npm run lint && npm run test:ci"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.38.0",
"@types/express": "^4.17.17",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"express": "^4.18.2",
"jest": "^30.0.0",
"prettier": "^3.9.6",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"axios": "^1.18.0",
"cron-validator": "^1.3.1"
},
"overrides": {
"js-yaml": "^4.1.0"
}
}