forked from RequestNetwork/requestNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "@requestnetwork/request-logic",
"version": "0.26.10",
"publishConfig": {
"access": "public"
},
"description": "Main package for the Request Network logic layer.",
"keywords": [
"requestnetwork",
"request-logic"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/request-logic#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",
"example": "ts-node specs/example/example.ts",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"test": "jest",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@requestnetwork/advanced-logic": "0.35.0",
"@requestnetwork/multi-format": "0.15.10",
"@requestnetwork/types": "0.36.0",
"@requestnetwork/utils": "0.36.0",
"semver": "5.6.0",
"tslib": "2.3.1"
},
"devDependencies": {
"@types/jest": "26.0.13",
"@types/semver": "7.3.4",
"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": "9.0.0",
"typescript": "4.4.4"
},
"gitHead": "6155223cfce769e48ccae480c510b35b4f54b4d0"
}