-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.59 KB
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
{
"name": "@requestnetwork/data-access",
"version": "0.27.0",
"publishConfig": {
"access": "public"
},
"description": "Main package for the Request Network data access layer.",
"keywords": [
"requestnetwork",
"data-access"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/data-access#readme",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=16.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": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"test": "jest",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@requestnetwork/multi-format": "0.15.10",
"@requestnetwork/types": "0.36.0",
"@requestnetwork/utils": "0.36.0",
"bluebird": "3.7.2",
"keyv": "4.0.3",
"tslib": "2.5.0"
},
"devDependencies": {
"@types/bluebird": "3.5.33",
"@types/jest": "26.0.13",
"@types/keyv": "3.1.1",
"@types/node": "16.11.7",
"jest": "26.4.2",
"nyc": "15.1.0",
"shx": "0.3.2",
"source-map-support": "0.5.19",
"ts-jest": "26.3.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"gitHead": "6155223cfce769e48ccae480c510b35b4f54b4d0"
}