-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 957 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
34
35
36
37
38
39
40
{
"name": "nanorequest",
"version": "5.0.0",
"description": "Sometimes you just want to make a small request with a callback",
"main": "dist/nanorequest.js",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"test": "npm run build && tap test/*.spec.js",
"coverage": "npm run build && tap test/*.spec.js --cov --coverage-report=lcov"
},
"repository": {
"type": "https",
"url": "https://github.com/toddself/nanorequest"
},
"bugs": {
"url": "https://github.com/toddself/nanorequest/issues"
},
"homepage": "https://github.com/toddself/nanorequest/#readme",
"keywords": [
"request",
"get",
"fetch",
"http",
"https"
],
"author": "Todd Kennedy <todd@selfassembled.org>",
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@types/node": ">=12.0.0",
"concat-stream": "^2.0.0",
"tap": "^15.0.9",
"typescript": "^3.2.4"
}
}