-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.58 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"packageManager": "yarn@4.11.0",
"name": "@reforge-com/node",
"version": "0.1.0",
"description": "Feature Flags, Live Config, and Dynamic Log Levels",
"main": "dist/reforge.cjs",
"types": "dist/reforge.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ReforgeHQ/sdk-node.git"
},
"bugs": {
"url": "https://github.com/ReforgeHQ/sdk-node/issues"
},
"homepage": "https://github.com/ReforgeHQ/sdk-node#readme",
"exports": {
".": {
"import": "./dist/reforge.mjs",
"require": "./dist/reforge.cjs"
},
"./integrations/pino": {
"import": "./dist/integrations/pino.mjs",
"require": "./dist/integrations/pino.cjs",
"types": "./dist/integrations/pino.d.ts"
},
"./integrations/winston": {
"import": "./dist/integrations/winston.mjs",
"require": "./dist/integrations/winston.cjs",
"types": "./dist/integrations/winston.d.ts"
},
"./integrations": {
"import": "./dist/integrations/index.mjs",
"require": "./dist/integrations/index.cjs",
"types": "./dist/integrations/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && npx unbuild",
"prettier": "prettier --cache=/tmp/sdk-node -l \"**/*.+(js|ts|json)\"",
"prettier:fix": "prettier --cache=/tmp/sdk-node --write \"**/*.+(js|ts|json)\"",
"lint": "eslint --cache=true --ext .ts .",
"lint:fix": "eslint --cache=true --ext --fix .ts .",
"prep": "yarn run lint && yarn run format && yarn run test && yarn run build",
"test": "jest --forceExit"
},
"keywords": [],
"author": "Jeffrey Chupp",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^24.10.0",
"@types/node-forge": "^1",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"bun": "^1.2.12",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"yaml": "^2.2.2"
},
"dependencies": {
"eventsource": "^4.0.0",
"murmurhash": "^2.0.1",
"node-forge": "^1.3.1"
},
"peerDependencies": {
"pino": ">=7.0.0",
"winston": ">=3.0.0"
},
"peerDependenciesMeta": {
"pino": {
"optional": true
},
"winston": {
"optional": true
}
}
}