-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
33 lines (33 loc) · 1004 Bytes
/
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
{
"name": "bent",
"version": "0.0.0-dev",
"description": "Functional HTTP client for Node.js w/ async/await.",
"main": "src/nodejs.js",
"browser": "src/browser.js",
"scripts": {
"lint": "standard",
"test:node": "hundreds mocha --timeout=5000 test/test-*.js",
"test:browser": "polendina --cleanup --service-worker --worker test/test-*.js",
"test": "npm run lint && npm run test:node && npm run test:browser",
"coverage": "nyc --reporter=html mocha test/test-*.js && npx http-server coverage"
},
"keywords": [],
"author": "Mikeal Rogers <[email protected]> (http://www.mikealrogers.com)",
"license": "Apache-2.0",
"dependencies": {
"bytesish": "^0.4.1",
"caseless": "~0.12.0",
"is-stream": "^2.0.0"
},
"devDependencies": {
"hundreds": "0.0.2",
"mocha": "^7.0.1",
"polendina": "1.0.0",
"standard": "^14.3.1",
"tsame": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mikeal/bent.git"
}
}