-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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": "fuge-proxy",
"description": "",
"keywords": [
"proxy",
"fuge",
"microservices"
],
"version": "0.4.0",
"license": "MIT",
"author": "Peter Elger (http://nearform.com/)",
"contributors": [
"Peter Elger <elger.peter@gmail.com> (http://peterelger.com/)"
],
"main": "./proxy.js",
"engines": {
"node": "*"
},
"dependencies": {
"async": "^1.5.0",
"lodash": "^3.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/apparatus/fuge-proxy"
},
"scripts": {
"lint": "jshint **/*.js",
"test": "jshint **/*.js && tape test/*Test.js",
"coverage": "istanbul cover tape **/*Test.js && open ./coverage/lcov-report/index.html",
"coverage-check": "istanbul cover tape test/*Test.js && istanbul check-coverage",
"commit-check": "jshint **/*.js && istanbul cover tape test/*Test.js && istanbul check-coverage"
},
"pre-commit": [
"commit-check"
],
"devDependencies": {
"istanbul": "^0.4.0",
"jshint": "^2.8.0",
"pre-commit": "^1.1.1",
"tape": "^4.2.0"
}
}