-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
50
51
52
53
54
55
56
57
{
"name": "eureka-client-js",
"version": "0.2.0",
"description": "Node.js eureka client",
"main": "build/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --bail --check-leaks --compilers js:babel-register tests/setup.js tests/index.js tests/**/*",
"coverage": "nyc npm run test > /dev/null; nyc report",
"build": "npm run lint && babel src --out-dir build",
"lint": "eslint src tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexa1/eureka-client-js.git"
},
"author": "Vito LaVilla <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexa1/eureka-client-js/issues"
},
"homepage": "https://github.com/hexa1/eureka-client-js#readme",
"dependencies": {
"chalk": "^1.1.3",
"diskusage": "^0.2.1",
"request": "^2.74.0",
"request-promise": "^4.0.2",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"eslint": "^3.4.0",
"eslint-config-hexa1": "github:hexa1/eslint-config-hexa1#v0.1.1",
"expect": "^1.20.2",
"express": "^4.15.2",
"mocha": "^3.0.0",
"nyc": "^8.3.0"
},
"nyc": {
"all": true,
"sourceMap": false,
"instrument": false,
"cache": true,
"include": [
"src/**/*.js"
],
"exclude": [
"src/lib/log.js"
],
"reporter": [
"html",
"text"
]
}
}