-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "netlify-plugin-use-env-in-runtime",
"version": "1.2.2",
"description": "Allows you to use env. vars of the Netlify TOML file in your code",
"main": "index.js",
"files": [
"index.js",
"manifest.yml",
"LICENSE",
"package.json",
"package-lock.json",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"test": "jest",
"release": "standard-version",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ARKHN3B/netlify-plugin-use-env-in-runtime.git"
},
"engines": {
"node": ">=8.3.0"
},
"keywords": [
"netlify",
"netlify-plugin",
"plugins",
"plugin",
"env",
"var",
"vars"
],
"author": "Ben Lmsc",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ARKHN3B/netlify-plugin-use-env-in-runtime/issues"
},
"homepage": "https://github.com/ARKHN3B/netlify-plugin-use-env-in-runtime#readme",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"standard-version": "^9.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}