-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "miniget",
"description": "A small HTTP(S) GET request library, with redirects and streaming.",
"keywords": [
"request",
"http",
"https",
"redirect",
"stream"
],
"version": "2.1.0",
"repository": {
"type": "git",
"url": "git://github.com/fent/node-miniget.git"
},
"author": "fent <fentbox@gmail.com> (https://github.com/fent)",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"test": "nyc --extension .ts --reporter=lcov --reporter=text-summary npm run test:unit",
"test:unit": "mocha -- --require ts-node/register test/*-test.ts"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^7.0.0",
"@types/node": "^13.1.0",
"@types/sinon": "^9.0.8",
"longjohn": "^0.2.12",
"mocha": "^7.0.1",
"nock": "^12.0.0",
"nyc": "^15.0.0",
"sinon": "^9.2.0",
"stream-equal": "^1.1.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"engines": {
"node": ">=10"
},
"license": "MIT"
}