This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
{
"name": "@techgreedy/singularity-import",
"version": "1.0.3",
"description": "Automatically import deals to boost for Filecoin storage provider",
"main": "dist/singularity-import-boost.js",
"types": "dist/singularity-import-boost.d.ts",
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/singularity-import-boost.js",
"start": "ts-node-esm src/singularity-import-boost.ts",
"lint": "eslint --ext ts --fix src/",
"lint:nofix": "eslint --ext ts src/",
"markdownlint": "markdownlint-cli2-fix *.md",
"markdownlint:nofix": "markdownlint-cli2 *.md"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/tech-greedy/singularity-import.git"
},
"keywords": [
"filecoin",
"singularity",
"import"
],
"license": "(Apache-2.0 AND MIT)",
"bugs": {
"url": "https://github.com/tech-greedy/singularity-import/issues"
},
"homepage": "https://github.com/tech-greedy/singularity-import",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"markdownlint-cli2": "^0.6.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/async-retry": "^1.4.5",
"async-retry": "^1.3.3",
"axios": "^1.3.4",
"commander": "^10.0.0",
"fs-extra": "^11.1.0",
"graphql-request": "^5.2.0",
"multipart-download": "^1.2.5",
"parse-duration": "^1.0.3",
"semaphore-async-await": "^1.5.1"
},
"author": "Xinan Xu",
"files": [
"dist"
],
"bin": {
"singularity-import-boost": "dist/singularity-import-boost.js"
}
}