-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "asherah",
"version": "0.0.0",
"description": "Asherah envelope encryption and key rotation library",
"exports": {
"node-addons": "./dist/asherah.node"
},
"repository": {
"type": "git",
"url": "https://github.com/godaddy/asherah-node.git"
},
"scripts": {
"preinstall": "scripts/download-libraries.sh",
"load": "node --max-old-space-size=500 scripts/dumpster-fire-memory.js",
"install": "scripts/build.sh",
"test:mocha-debug": "lldb -o run -- node node_modules/mocha/bin/mocha --inspect-brk",
"test:mocha": "mocha",
"test": "nyc npm run test:mocha",
"debug": "nyc npm run test:mocha-debug",
"posttest": "npm run lint",
"lint": "eslint src/**.ts --fix",
"update": "npx npm-check-updates --target latest -u -x mocha && npm i && npm audit fix"
},
"keywords": [],
"author": "Jeremiah Gowdy <[email protected]>",
"license": "MIT",
"files": [
"binding.gyp",
"src/asherah_async_worker.h",
"src/asherah.cc",
"src/cobhan_buffer_napi.h",
"src/cobhan_buffer.h",
"src/hints.h",
"src/logging.h",
"src/logging_napi.cc",
"src/logging_napi.h",
"src/logging_stderr.cc",
"src/logging_stderr.h",
"src/napi_utils.h",
"src/scoped_allocate.h",
"src/asherah.d.ts",
"scripts/download-libraries.sh",
"scripts/build.sh",
"SHA256SUMS",
"SHA256SUMS-darwin",
".asherah-version"
],
"devDependencies": {
"@cucumber/cucumber": "^11.2.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"chai": "^5.1.2",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"microtime": "^3.1.1",
"mocha": "^10.0.0",
"node-api-headers": "^1.5.0",
"nyc": "^17.1.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.7.3",
"winston": "^3.17.0"
},
"mocha": {
"extension": [
"ts"
],
"recursive": true,
"spec": "test/**/*.spec.ts",
"require": "ts-node/register"
},
"types": "dist/asherah.d.ts",
"dependencies": {
"node-addon-api": "^8.3.0"
}
}