-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
121 lines (121 loc) · 3.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "hull",
"version": "0.14.2",
"description": "A Node.js client for hull.io",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/hull/hull-node.git"
},
"homepage": "https://github.com/hull/hull-node",
"bugs": {
"url": "https://github.com/hull/hull-node/issues"
},
"engines": {
"node": ">=14.x"
},
"author": "Romain Dardour <romain@hull.io>",
"license": "MIT",
"scripts": {
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"test:lint": "eslint src && documentation lint src",
"test:modules": "npm outdated --depth=0",
"test:unit": "NODE_ENV=test mocha --require @babel/register -R spec ./test/unit/*.js ./test/unit/**/*.js",
"test:integration": "NODE_ENV=test mocha --require @babel/register -R spec ./test/integration/*.js",
"test:flow": "echo flow test",
"test:coverage": "nyc --babel-cache --hook-run-in-context false npm run test",
"update": "updtr",
"clean": "rimraf lib",
"build": "npm run clean && npx babel src -d lib",
"dev": "npx babel src -d lib -w",
"prepublish": "npm run build",
"documentation": "documentation build src -f md -o API.md --access public --markdownToc=false",
"precommit": "npm run documentation && git add API.md"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"JSONStream": "^1.1.2",
"aws-sdk": "^2.81.0",
"basic-auth": "^1.1.0",
"batch-stream": "^0.1.3",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"bull": "^3.0.0-rc.3",
"cache-manager": "2.6.0",
"connect": "^3.4.1",
"connect-timeout": "^1.8.0",
"csv-stream": "^0.1.3",
"datadog-metrics": "0.9.3",
"del": "^2.2.1",
"dogapi": "2.8.4",
"ejs": "^3.1.7",
"hull-client": "^2.0.4",
"jsonwebtoken": "^8.5.1",
"jwt-simple": "^0.5.0",
"lodash": "^4.17.5",
"newrelic": "^7.5.2",
"passport": "^0.3.2",
"progress-bar-webpack-plugin": "^2.1.0",
"promise-streams": "^1.0.1",
"raven": "^2.4.2",
"raw-body": "^2.1.7",
"react-hot-loader": "^4.2.0",
"sns-validator": "^0.3.0",
"sqs-consumer": "^3.6.1",
"superagent": "^7.1.3",
"supply": "0.0.4",
"urijs": "^1.18.7",
"webpack": "^5.73.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-hot-middleware": "^2.25.1"
},
"peerDependencies": {
"express": "^4.16.3",
"newrelic": "^7.1.1"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-flow-comments": "^7.17.12",
"@babel/plugin-transform-react-jsx": "^7.17.12",
"@babel/register": "^7.17.7",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"documentation": "^13.2.5",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"flow-bin": "^0.68.0",
"flow-typed": "^2.4.0",
"husky": "^0.14.3",
"minihull": "^2.1.1",
"mkdirp": "^0.5.1",
"mocha": "^3.0.0",
"nock": "^9.2.3",
"node-mocks-http": "^1.7.0",
"nyc": "^11.0.3",
"rimraf": "^2.6.0",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
"supertest": "^3.1.0",
"updtr": "^1.0.0"
},
"nodeBoilerplateOptions": {
"mochaGlobals": [
"stub",
"spy",
"expect"
]
},
"nyc": {
"include": [
"src"
]
},
"resolutions": {
"ngrok": "^4.3.1"
}
}