-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.27 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.27 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
67
68
69
70
71
72
73
74
75
76
{
"$schema": "http://json.schemastore.org/package",
"name": "@castleio/sdk",
"description": "Castle SDK for Node",
"version": "2.3.3",
"main": "dist/index.js",
"repository": "git@github.com:castle/castle-node.git",
"author": {
"name": "castle.io",
"url": "https://castle.io"
},
"homepage": "https://github.com/castle/castle-node",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"start": "tsc -w",
"test": "jest",
"lint-fix": "eslint --fix --quiet '{src,test}/**/*.{js,ts,tsx}' '*.{js,ts,tsx}'",
"lint-verify": "eslint '{src,test}/**/*.{js,ts,tsx}' '*.{js,ts,tsx}'",
"format": "yarn run prettier --write '{src,test}/**/*.{js,ts,tsx,yml,yaml,json,md}' '*.{js,ts,tsx,yml,yaml,json,md}'",
"format:check": "yarn run prettier --check '{src,test}/**/*.{js,ts,tsx,yml,yaml,json,md}' '*.{js,ts,tsx,yml,yaml,json,md}'",
"prepush": "yarn build && yarn lint-fix",
"prepublishOnly": "yarn build"
},
"files": [
"dist/*"
],
"husky": {
"hooks": {
"pre-push": "yarn prepush"
}
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
"@types/jest": "30.0.0",
"@types/lodash.get": "4.4.9",
"@types/lodash.isempty": "4.4.9",
"@types/lodash.merge": "4.6.9",
"@types/lodash.pickby": "4.6.9",
"@types/lodash.reduce": "4.6.9",
"@types/node": "24.0.14",
"@types/node-fetch": "2.6.12",
"@typescript-eslint/eslint-plugin": "8.37.0",
"@typescript-eslint/parser": "8.37.0",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.5.1",
"express": "5.1.0",
"fetch-mock": "11.1.5",
"husky": "9.1.7",
"jest": "30.0.4",
"mockdate": "3.0.5",
"prettier": "3.6.2",
"rimraf": "6.0.1",
"source-map-support": "0.5.21",
"timeout-signal": "2.0.0",
"ts-jest": "29.4.0",
"ts-node": "10.9.2",
"typescript": "5.8.3"
},
"dependencies": {
"abort-controller": "^3.0.0",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.merge": "^4.6.2",
"lodash.pickby": "^4.6.0",
"lodash.reduce": "^4.6.0",
"node-fetch": "< 3",
"pino": "^8.12.1",
"pino-pretty": "^10.0.0"
}
}