-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "r2",
"version": "0.0.0-development",
"description": "HTTP client. Spiritual successor to request.",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"test": "tap test/test-*.js --100",
"posttest": "standard",
"coverage": "tap test/test-*.js --coverage-report=lcov",
"coverage:upload": "nyc report --reporter=text-lcov | coveralls",
"precommit": "npm test",
"prepush": "npm test",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "Mikeal Rogers <[email protected]> (http://www.mikealrogers.com)",
"license": "Apache-2.0",
"dependencies": {
"caseless": "^0.12.0",
"node-fetch": "^2.1.2",
"typedarray-to-buffer": "^3.1.2"
},
"devDependencies": {
"blob-to-buffer": "^1.2.6",
"body": "^5.1.0",
"browserify": "^16.1.0",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"fake-indexeddb": "^2.0.3",
"husky": "^0.14.3",
"lucass": "^4.1.0",
"semantic-release": "^15.0.0",
"standard": "^11.0.0",
"tap": "^12.0.0",
"validate-commit-msg": "^2.14.0"
},
"browser": {
"node-fetch": false
},
"repository": {
"type": "git",
"url": "https://github.com/mikeal/r2.git"
}
}