-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.78 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
{
"name": "@retracedhq/retraced",
"author": "Replicated Inc., BoxyHQ Inc.",
"version": "0.7.23",
"engines": {
"node": ">=14.x"
},
"license": "Apache-2.0",
"repository": "https://github.com/retracedhq/retraced-js.git",
"bugs": {
"email": "retraced@boxyhq.com",
"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 <jtoscano42@gmail.com>",
"Team BoxyHQ <retraced@boxyhq.com>"
],
"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.16",
"@types/mocha": "10.0.10",
"@types/node": "22.15.3",
"@typescript-eslint/eslint-plugin": "8.31.0",
"@typescript-eslint/parser": "8.31.0",
"chokidar": "4.0.3",
"eslint": "9.25.1",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-import-x": "4.11.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"mocha": "11.1.0",
"prettier": "3.5.3",
"release-it": "19.0.1",
"typescript": "5.8.3"
},
"dependencies": {
"axios": "1.9.0",
"lodash": "4.17.21"
}
}