-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "required-env-var-plugin",
"version": "1.0.0-beta.1",
"description": "Webpack plugin for enforcing environmental variables.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jalooc/required-env-var-plugin.git"
},
"author": "Piotr Dżaluk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jalooc/required-env-var-plugin/issues"
},
"homepage": "https://github.com/jalooc/required-env-var-plugin#readme",
"scripts": {
"test": "ava",
"lint": "eslint .",
"prepush": "npm-run-all -p lint test",
"precommit": "npm run lint"
},
"keywords": [
"webpack",
"plugin",
"environmental",
"env",
"variable",
"var",
"required",
"required-env-var-plugin",
"build"
],
"devDependencies": {
"ava": "^0.17.0",
"babel-eslint": "^7.1.1",
"coveralls": "^2.11.15",
"eslint": "^3.10.2",
"eslint-plugin-react": "^6.7.1",
"husky": "^0.11.9",
"mockery": "^2.0.0",
"npm-run-all": "^3.1.1"
},
"peerDependencies": {
"webpack": "1 || ^2.1.0-beta"
},
"engines": {
"node": ">=6.8.1"
}
}