-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "trellis-masker",
"version": "2.0.0",
"description": "Trellis microservice to sign, mask PII, and link documents",
"main": "dist/index.js",
"type": "module",
"repository": "git@gitlab.com:qlevercompany/trellis/trellis-cb.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "node dist/index.js",
"build": "tsc -b",
"test": "env TS_NODE_COMPILER_OPTIONS='{ \"module\": \"commonjs\" }' ts-mocha"
},
"types": "dist/index.d.js",
"files": [
"dist/"
],
"packageManager": "yarn@3.1.1",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/convict": "^6",
"@types/debug": "^4",
"@types/deep-equal": "^1.0.1",
"@types/json-pointer": "^1.0.31",
"@types/mocha": "^9",
"@types/node": "^17.0.5",
"@types/sprintf-js": "^1",
"mocha": "^9.1.3",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@oada/client": "^3.0.5",
"@oada/jobs": "^3.0.0",
"@overleaf/o-error": "^3.3.1",
"@trellisfw/masklink": "^1.0.6",
"@trellisfw/signatures": "^2.1.3",
"convict": "^6.2.1",
"debug": "^4.3.3",
"deep-equal": "^2.0.5",
"dotenv": "^10.0.0",
"json-pointer": "^0.6.1",
"sprintf-js": "^1.1.2"
}
}