-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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": "@emodyz/node-downloader",
"version": "2.0.0-RC6",
"description": "Node file downloader",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "npm run build && jest",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emodyz/NodeDownloader.git"
},
"keywords": [
"node",
"downloader",
"file",
"checksum",
"integrity"
],
"author": "Emodyz",
"license": "MIT",
"bugs": {
"url": "https://github.com/emodyz/NodeDownloader/issues"
},
"homepage": "https://github.com/emodyz/NodeDownloader#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.10",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"dependencies": {
"node-downloader-helper": "^2.1.1"
}
}