-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "@caviar/plugin-define-runtime-env",
"version": "1.0.0",
"description": "Caviar plugin to allows you to define `process.env` variables which can be configured at runtime for both webpack and server",
"main": "src/index.js",
"scripts": {
"test": "NODE_DEBUG=@caviar/plugin-define-runtime-env nyc ava --timeout=10s --verbose",
"test:only": " nyc ava --timeout=10s --verbose",
"lint": "eslint .",
"posttest": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/caviar-plugin-define-runtime-env.git"
},
"keywords": [
"@caviar/plugin-define-runtime-env"
],
"engines": {
"node": ">= 6"
},
"ava": {
"babel": false,
"files": [
"test/*.test.js"
]
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/caviar-plugin-define-runtime-env/issues"
},
"devDependencies": {
"ava": "^1.4.1",
"codecov": "^3.4.0",
"nyc": "^14.1.1",
"eslint-config-ostai": "^3.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint": "^5.16.0"
},
"dependencies": {
"babel-plugin-transform-environment-variables-to-getters": "^2.0.1",
"runtime-environment-webpack-plugin": "^1.0.2"
}
}