-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "balena-request",
"version": "10.0.2",
"description": "Balena HTTP client",
"main": "build/request.js",
"homepage": "https://github.com/balena-io-modules/balena-request",
"repository": {
"type": "git",
"url": "git://github.com/balena-io-modules/balena-request.git"
},
"keywords": [
"balena",
"request",
"http"
],
"directories": {
"test": "tests"
},
"scripts": {
"lint": "gulp lint",
"test": "npm run test-node && npm run test-browser",
"test-node": "gulp test",
"test-browser": "mockttp -c karma start",
"build": "gulp build",
"prepublish": "require-npm4-to-publish",
"prepublishOnly": "npm run build",
"readme": "jsdoc2md --template doc/README.hbs build/request.js build/progress.js build/utils.js > README.md"
},
"author": "Juan Cruz Viotti <juanchiviotti@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"coffee-script": "~1.12.5",
"global-tunnel-ng": "2.1.0",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.6.0",
"gulp-mocha": "^4.3.0",
"gulp-util": "^3.0.1",
"jsdoc-to-markdown": "^4.0.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.2.0",
"mocha": "^3.0.0",
"mochainon": "^1.0.0",
"mockttp": "^0.8.0",
"proxy": "^0.2.4",
"require-npm4-to-publish": "^1.0.0",
"balena-auth": "^3.0.0",
"resin-config-karma": "^1.0.4",
"temp": "^0.8.3",
"timekeeper": "^1.0.0",
"zlib-browserify": "0.0.3"
},
"dependencies": {
"balena-errors": "^3.0.0",
"bluebird": "^3.3.4",
"fetch-ponyfill": "^4.0.0",
"fetch-readablestream": "^0.2.0",
"lodash": "^4.6.1",
"node-web-streams": "github:resin-io-modules/node-web-streams#emit-errors",
"progress-stream": "^2.0.0",
"qs": "^6.3.0",
"rindle": "^1.3.1"
},
"peerDependencies": {
"balena-auth": "^3.0.0"
}
}