This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.85 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
67
68
69
70
71
72
73
74
75
76
{
"name": "@numbersprotocol/estuary-upload",
"version": "1.3.0",
"description": "",
"engines": {
"node": ">=14.16"
},
"main": "dist/cjs/estuary-upload.js",
"module": "dist/esm/estuary-upload.js",
"browser": "dist/browser/estuary-upload.js",
"types": "dist/index.d.ts",
"bin": {
"estuary-upload": "dist/cjs/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prebuild:types": "rimraf ./build",
"build:types": "tsc -p ./tsconfig.json --outDir build --declaration true && api-extractor run",
"predocs": "rimraf ./docs",
"docs": "typedoc src --out docs",
"clean": "rimraf ./build ./dist ./docs",
"test": "jest",
"unit": "jest --group=unit",
"integration": "jest --group=integration",
"lint": "eslint . --ext .ts",
"prepare": "npm run build && npm run build:types"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "1.2.1",
"commander": "9.4.1",
"ipfs-car": "0.9.1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.31.2",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"eslint": "^8.23.1",
"jest": "^29.1.2",
"jest-runner-groups": "^2.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typedoc": "^0.23.15",
"typescript": "^4.8.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"runner": "groups",
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/test/**/*.test.ts"
]
}
}