This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.81 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-finagle",
"version": "0.3.0",
"description": "Proof of concept lib for creating composable services/filters in node",
"main": "lib/index.js",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "babel --stage 0 src --out-dir lib",
"prepublish": "npm run build",
"flow": "flow check src/",
"lint": "eslint --ext .js src",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "JusBrasil Team <[email protected]>",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/jusbrasil/node-finagle.git"
},
"bugs": {
"url": "https://github.com/jusbrasil/node-finagle/issues"
},
"homepage": "https://github.com/jusbrasil/node-finagle",
"dependencies": {
"CBuffer": "^2.0.0",
"circuit-breaker-js": "^0.0.1",
"dataloader": "^1.2.0",
"lodash": "^4.16.4",
"make-error": "^1.2.1",
"measured": "^1.1.0",
"native-hdr-histogram": "^0.7.0"
},
"peerDependencies": {
"bluebird": "^3.4.6"
},
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.8.0",
"babel-core": "6.8.0",
"babel-eslint": "6.1.2",
"babel-jest": "18.0.0",
"babel-plugin-add-module-exports": "0.1.4",
"babel-plugin-syntax-flow": "6.8.0",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-flow-strip-types": "6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-0": "6.5.0",
"bluebird": "3.4.6",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-jsx-a11y": "2.1.0",
"eslint-plugin-react": "6.4.1",
"flow-bin": "0.39.0",
"jest": "19.0.2"
},
"jest": {
"transform": {
".*": "./node_modules/babel-jest"
},
"setupTestFrameworkScriptFile": "./setup-test.js",
"roots": [
"src"
]
}
}