-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 732 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 732 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
{
"name": "webpack-env",
"version": "0.8.0",
"description": "read variables from a .env.js file and make them available to webpack as globals",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toastynerd/webpack_env.git"
},
"keywords": [
"weback",
"env"
],
"author": "Tyler Morgan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/toastynerd/webpack_env/issues"
},
"homepage": "https://github.com/toastynerd/webpack_env#readme",
"dependencies": {
"webpack": "^1.12.2"
},
"devDependencies": {
"chai": "^3.3.0",
"mocha": "^2.3.3"
}
}