-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@retracedhq/retraced",
"author": "Replicated Inc., BoxyHQ Inc.",
"version": "0.7.18",
"engines": {
"node": ">=14.x"
},
"license": "Apache-2.0",
"repository": "https://github.com/retracedhq/retraced-js.git",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/retracedhq/retraced-js/issues"
},
"description": "The official NodeJS client for interacting with the Retraced audit logging API.",
"keywords": [
"audit",
"log",
"retraced",
"replicated",
"boxyhq"
],
"contributors": [
"Joe Toscano <[email protected]>",
"Team BoxyHQ <[email protected]>"
],
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib"
],
"scripts": {
"prepublish": "rm -rf ./lib && eslint -c eslint.config.cjs ./src && tsc -p .",
"test": "rm -rf ./lib && tsc -p . && mocha ./lib/test.js",
"local-test": "rm -rf ./lib && tsc -p . && node ./lib/local-test.js",
"check-format": "prettier --check .",
"format": "prettier --write .",
"release": "git checkout main && git pull && git checkout release && git merge origin/main && release-it && git checkout main && git merge origin/release && git push origin main"
},
"devDependencies": {
"@testdeck/mocha": "0.3.3",
"@types/lodash": "4.17.13",
"@types/mocha": "10.0.10",
"@types/node": "22.10.3",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"chokidar": "4.0.3",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"mocha": "11.0.1",
"prettier": "3.4.2",
"release-it": "17.11.0",
"typescript": "5.7.2"
},
"dependencies": {
"axios": "1.7.9",
"lodash": "4.17.21"
}
}