-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.3 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
{
"name": "@trellisfw/trellis-signer",
"version": "2.0.0",
"description": "A Trellis microservice to sign documents in response to posted jobs.",
"main": "dist/index.js",
"type": "module",
"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/"
],
"license": "Apache-2.0",
"dependencies": {
"@oada/jobs": "^3.0.0",
"@oada/types": "^1.7.0",
"@overleaf/o-error": "^3.3.1",
"@trellisfw/signatures": "^2.1.3",
"@types/deep-equal": "^1.0.1",
"convict": "^6.2.1",
"debug": "^4.3.3",
"deep-equal": "^2.0.5",
"dotenv": "^10.0.0",
"sprintf-js": "^1.1.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@oada/client": "^3.0.5",
"@tsconfig/node16": "^1.0.2",
"@types/chai": "^4",
"@types/convict": "^6.1.1",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@types/sprintf-js": "^1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@yarnpkg/sdks": "^2.5.1-rc.5",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.39.0",
"eslint-config-xo-typescript": "^0.47.1",
"eslint-formatter-pretty": "^4.1.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-regexp": "^1.5.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-unicorn": "^39.0.0",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"packageManager": "yarn@3.1.1"
}