-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "@caviar/sandbox-env-plugin",
"version": "2.0.1",
"description": "caviar plugin to allow the sanbox to inherit extra environment variables from the current process",
"main": "src/index.js",
"scripts": {
"test": "nyc ava --timeout=10s",
"test-no-report": "NODE_DEBUG=@caviar/plugin-sandbox-env 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/caviarjs/sandbox-env-plugin.git"
},
"keywords": [
"@caviar/plugin-sandbox-env",
"caviar-plugin",
"caviar"
],
"engines": {
"node": ">= 6"
},
"ava": {
"babel": false
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/caviarjs/sandbox-env-plugin/issues"
},
"devDependencies": {
"ava": "^1.4.1",
"codecov": "^3.3.0",
"nyc": "^14.0.0",
"eslint-config-ostai": "^3.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint": "^5.16.0"
}
}