-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 921 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 921 Bytes
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
{
"name": "prod-env-variables",
"version": "1.0.0",
"description": "Use one set of environment variables on development branches and another set on the default branch.",
"private": "true",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"build": "ncc build src -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chadly/prod-env-variables.git"
},
"keywords": [
"environment",
"env",
"variables",
"context",
"production",
"prod"
],
"author": "Chad Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/chadly/prod-env-variables/issues"
},
"homepage": "https://github.com/chadly/prod-env-variables#readme",
"dependencies": {
"@actions/core": "^1.2.4"
},
"devDependencies": {
"@runly/eslint-config": "^2.0.1",
"@zeit/ncc": "~0.22.3",
"eslint": "^7.3.1",
"prettier": "^2.0.5"
}
}