-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "@requestnetwork/data-format",
"version": "0.19.8",
"publishConfig": {
"access": "public"
},
"description": "Data format for the Request Network protocol.",
"keywords": [
"request",
"requestnetwork",
"data-format"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/data-format",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"test": "jest",
"test:watch": "yarn test --watch"
},
"dependencies": {
"ajv": "6.12.4",
"ethers": "5.7.2",
"tslib": "2.5.0"
},
"devDependencies": {
"@types/node": "18.11.9",
"jest-junit": "16.0.0",
"ts-node": "10.9.1",
"typescript": "5.1.3"
},
"gitHead": "6155223cfce769e48ccae480c510b35b4f54b4d0"
}