-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1019 Bytes
/
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
{
"name": "@jimdo/serverless-dotenv",
"description": "serverless plugin to fetch environment variables and write it to a .env file",
"main": "src/index.js",
"author": "Henrik Fricke <[email protected]>",
"license": "MIT",
"scripts": {
"test": "$(npm bin)/jest test",
"test:cover": "$(npm bin)/jest test --coverage",
"lint": "$(npm bin)/standard | $(npm bin)/snazzy",
"coveralls": "cat ./coverage/lcov.info | $(npm bin)/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/Jimdo/serverless-dotenv.git"
},
"bugs": {
"url": "https://github.com/Jimdo/serverless-dotenv/issues"
},
"homepage": "https://github.com/Jimdo/serverless-dotenv",
"dependencies": {
"coveralls": "^2.12.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"jest": "^19.0.2",
"snazzy": "^6.0.0",
"standard": "^9.0.2"
},
"standard": {
"envs": [
"node",
"jest"
],
"ignore": [
"node_modules/",
"coverage"
]
}
}