forked from UnlyEd/serverless-env-copy-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.01 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
{
"name": "@unly/serverless-env-copy-plugin",
"version": "1.0.3",
"description": "Serverless plugin to fetch environment variables and write them to a .env file",
"main": "src/index.js",
"author": "Unly <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UnlyEd/serverless-env-copy-plugin.git"
},
"bugs": {
"url": "https://github.com/UnlyEd/serverless-env-copy-plugin/issues"
},
"homepage": "https://github.com/UnlyEd/serverless-env-copy-plugin",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"/src/index.js",
"/src/lib/collectFunctionEnvVariables.js",
"/src/lib/collectOfflineEnvVariables.js",
"/src/lib/transformEnvVarsToString.js"
],
"scripts": {
"lint": "esw src/ --fix --watch",
"lint:once": "eslint src/ --fix",
"preversion": "yarn lint:once && yarn test:once && yarn doc:toc",
"postversion": "git push && git push --tags",
"prepublishOnly": "yarn publish:preview && cli-confirm \"Do you really want to release a new version? Please check the files that will be publicly released first. (y/n)\"",
"publish:preview": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"release": "yarn bump --prompt --commit --tag --push",
"releaseAndPublish": "yarn release && npm publish",
"doc:toc": "yarn markdown-toc --maxdepth 4 -i README.md",
"test": "NODE_ENV=test jest --watch",
"test:once": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
],
"verbose": true
},
"dependencies": {
"mkdirp": "0.5.1"
},
"devDependencies": {
"@unly/cli-confirm": "1.1.1",
"coveralls": "^3.0.7",
"eslint": "6.2.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-watch": "4.0.2",
"jest": "24.9.0",
"jest-extended": "0.11.2",
"markdown-toc": "1.2.0",
"version-bump-prompt": "4.2.2"
}
}