-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "gatsby-plugin-env-variables",
"version": "2.3.0",
"description": "Gatsby plugin to allow system environment variables to be made available to client-side scripts",
"keywords": [
"gatsby",
"gatsby-plugin",
"environment variables",
"env variables"
],
"author": "Chad Lee <npm@chadly.net>",
"license": "MIT",
"main": "gatsby-node.js",
"scripts": {
"precompile": "npm test",
"compile": "rimraf lib && babel src -d lib && copyfiles package.json README.md lib",
"lint": "eslint src",
"test": "jest",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/chadly/gatsby-plugin-env-variables.git"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@runly/eslint-config": "^2.0.1",
"copyfiles": "^2.4.1",
"eslint": "^7.24.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "3.x"
},
"peerDependencies": {
"gatsby": "^5.0.0 || ^4.0.0 || ^3.0.0 || ^2.0.0"
}
}