-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
{
"name": "VanishingKeys",
"version": "0.0.0",
"description": "Share a secret securely with anyone.",
"author": "Authress Developers <developers@authress.io>",
"repository": {
"type": "git",
"url": "https://github.com/Authress/vanishing-keys.git"
},
"license": "Apache-2.0",
"keywords": [
"AWS",
"One Time Secret",
"Vanish",
"Vanishing Keys",
"Share credentials",
"secretly",
"Authress"
],
"main": "src/index.js",
"files": [
"src",
"dist"
],
"mode": "production",
"dependencies": {
"agentkeepalive": "^4.2.0",
"authress-sdk": "^1.2.14",
"base64url": "^3.0.1",
"cfn-response": "^1.0.1",
"cookie": "^0.4.1",
"error-object-polyfill": "^1.1.14",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"openapi-factory": "^5.2.17",
"short-uuid": "^4.2.0"
},
"scripts": {
"build": "exit 0",
"start": "nodemon make.js run",
"lint": "eslint --ext .js src make.js",
"setup": "node make.js setup",
"deploy": "node make.js deploy",
"test": "exit 0 || mocha tests/*.test.js"
},
"devDependencies": {
"aws-architect": "^6.6.4",
"aws-sdk": "^2.1381.0",
"commander": "^4.0.1",
"eslint": "^7.23.0",
"eslint-config-cimpress-atsquad": "1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"fs-extra": "^8.1.0",
"mocha": "^9.2.0",
"nodemon": "^2.0.22"
},
"engines": {
"node": ">=16"
}
}