-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
{
"name": "async-downloader",
"version": "0.0.1",
"description": "A lightweight, threaded resource download helper leveraging web workers",
"keywords": [
"Webworkers",
"content",
"images",
"download"
],
"files": [
"/dist",
"/workers"
],
"engines": {
"node": ">=10"
},
"license": "MIT",
"author": "Alex Patin",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/theAlexPatin/async-downloader.git"
},
"bugs": {
"url": "https://github.com/theAlexPatin/async-downloader/issues"
},
"homepage": "https://github.com/theAlexPatin/async-downloader",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "./node_modules/.bin/rimraf dist workers",
"build": "yarn clean && webpack",
"lint": "./node_modules/.bin/eslint --fix .",
"pub": "yarn lint && yarn build && yarn publish"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-thealexpatin": "^0.1.10",
"prettier": "^2.6.0",
"prettier-config-thealexpatin": "^0.1.1",
"rimraf": "^3.0.2",
"string-replace-loader": "^3.1.0",
"ts-loader": "^9.2.8",
"typescript": "4.1.3",
"typescript-transform-paths": "^3.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"worker-loader": "^3.0.8"
},
"publishConfig": {
"@ihomer:registry": "https://gitlab.com/api/v4/projects/15071328/packages/npm/"
}
}