-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "serverless-dotenv-plugin",
"version": "6.0.0",
"description": "Preload environment variables with dotenv into serverless.",
"main": "src/index.js",
"files": [
"src/**/*"
],
"scripts": {
"deploy": "publish",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.js\"",
"test": "nyc --reporter=lcov --reporter=text mocha",
"posttest": "prettier --ignore-path .gitignore --check \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/neverendingqs/serverless-dotenv-plugin.git"
},
"keywords": [
"serverless",
"dotenv",
"serverless-plugin"
],
"author": "Colyn Brown <[email protected]>",
"contributors": [
"Mark Tse <[email protected]> (https://neverendingqs.com/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/neverendingqs/serverless-dotenv-plugin/issues"
},
"homepage": "https://github.com/neverendingqs/serverless-dotenv-plugin#readme",
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"proxyquire": "^2.1.3",
"publish-me-maybe": "^1.0.12",
"sinon": "^15.0.2",
"sinon-chai": "^3.7.0"
},
"peerDependencies": {
"serverless": "1 || 2 || pre-3 || 3"
}
}