-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.93 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
77
78
79
80
81
{
"name": "@apillon/ipfs-kubo-rpc-http-client",
"description": "▶◀ Apillon node.js library for IPFS Kubo RPC API v0 ▶◀",
"version": "0.1.4",
"author": "Apillon",
"license": "MIT",
"main": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/Apillon/ipfs-kubo-rpc-http-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Apillon/ipfs-kubo-rpc-http-client"
},
"declaration": true,
"files": [
"dist/**"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist",
"build": "tsc --declarationMap",
"dev": "tsc --declarationMap --watch",
"lint": "tsc --declarationMap && eslint \"{src,test}/**/*.ts\" --fix",
"publish-package": "npm publish",
"publish-beta": "npm publish --tag beta",
"test": "npx jest --runInBand",
"test:logging": "npx jest LOG_TARGET=console ",
"file-to-ipfs": "node -r ts-node/register ./src/script/add-file-to-ipfs"
},
"keywords": [
"Apillon",
"web3",
"development",
"blockchain",
"ipfs",
"kubo",
"RPC API"
],
"dependencies": {
"axios": "^1.6.7"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"dotenv": "^16.4.2",
"eslint-config-common": "*",
"jest": "29.7.0",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"ts-jest": "29.1.1",
"ts-node": "^10.9.2",
"tsconfig": "*"
},
"jest": {
"testTimeout": 1800000,
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"rootDir": "src",
"testPathIgnorePatterns": [
"dist/*"
],
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"preset": "ts-jest",
"verbose": true
}
}