-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 780 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 780 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
{
"name": "netlify-plugin-contextual-env",
"version": "0.2.0",
"description": "A Netlify plugin to override ENV vars based on a branch or context",
"main": "src/index",
"repository": "https://github.com/cball/netlify-plugin-contextual-env",
"bugs": {
"url": "https://github.com/cball/netlify-plugin-contextual-env/issues"
},
"author": "Chris Ball",
"license": "MIT",
"private": false,
"keywords": [
"netlify",
"netlify-plugin",
"env"
],
"scripts": {
"version": "auto-changelog -p --template keepachangelog && git add CHANGELOG.md",
"prepublishOnly": "git push && git push --tags && gh-release",
"test": "jest"
},
"devDependencies": {
"auto-changelog": "^2.0.0",
"gh-release": "^3.5.0",
"jest": "^25.3.0"
}
}