-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "iwf-typescript-sdk",
"private": true,
"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",
"directories": {
"doc": "docs"
},
"scripts": {
"code-gen": "./scripts/idl-code-gen.sh",
"build": "tsc",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"prepublishOnly": "npm run build",
"preversion": "npm run lint && npm run test:ci",
"version": "npm run build && git add -A dist"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0"
},
"engines": {},
"dependencies": {
"cron-validator": "^1.3.1",
"immutable": "^4.3.0"
}
}