-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "lockbox-env",
"version": "1.1.0",
"description": "Yandex Cloud Lockbox secrets to environment variables init utility",
"main": "main.js",
"scripts": {
"start": "node -e \"require('./main.js').config()\"",
"dev": "nodemon ./main.js",
"test": "tap ./*.test.js"
},
"repository": {
"url": "https://github.com/goshander/lockbox-env"
},
"author": {
"email": "[email protected]",
"name": "Georgiy Malkov",
"url": "https://github.com/goshander"
},
"license": "see in LICENSE",
"dependencies": {
"axios": "^1.1.2",
"node-jose": "^2.1.1",
"pino": "^8.6.1",
"synchronized-promise": "^0.3.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.1",
"tap": "^16.3.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}