forked from johnytiago/castle-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.13 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.13 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
77
78
{
"$schema": "http://json.schemastore.org/package",
"name": "@gmsllc/castle-node",
"description": "Castle SDK for Node",
"version": "2.3.0",
"main": "dist/index.js",
"repository": "git@github.com:gmsllc/castle-node.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"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}'",
"prepush": "yarn build && yarn lint-fix",
"prepublishOnly": "yarn build"
},
"files": [
"dist/*"
],
"husky": {
"hooks": {
"pre-push": "yarn prepush"
}
},
"devDependencies": {
"@eslint/eslintrc": "3.1.0",
"@types/fetch-mock": "7.3.8",
"@types/jest": "29.5.12",
"@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": "20.14.9",
"@types/node-fetch": "2.6.11",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.1.3",
"express": "4.21.2",
"fetch-mock": "10.1.1",
"husky": "9.0.11",
"jest": "29.7.0",
"mockdate": "3.0.5",
"prettier": "3.3.2",
"rimraf": "5.0.7",
"source-map-support": "0.5.21",
"timeout-signal": "2.0.0",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"typescript": "5.5.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"
}
}