This repository has been archived by the owner on Jul 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
95 lines (95 loc) · 3.25 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "xpring-js",
"version": "5.3.1",
"description": "XpringJS provides a Javascript based SDK for interacting with the Ripple Ledger.",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/xpring-eng/Xpring-JS.git"
},
"author": "Keefer Taylor | Xpring Engineering <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xpring-eng/Xpring-JS/issues"
},
"files": [
"build/**/*"
],
"scripts": {
"build": "npm run clean && ./scripts/regenerate_protos.sh && ./scripts/regenerate_pay_id_api.sh && npm run lint && tsc -d && copyfiles -u 3 './src/XRP/Generated/**/*' ./build/XRP/Generated && copyfiles -u 3 './src/ILP/Generated/**/*' ./build/ILP/Generated",
"clean": "rm -rf ./src/XRP/Generated ./src/ILP/Generated ./dist ./build ./src/PayID/Generated",
"pretest": "npm run clean && ./scripts/regenerate_protos.sh && ./scripts/regenerate_pay_id_api.sh && npm run lint && tsc --noEmit",
"lint": "eslint . --ext .ts --fix",
"lintNoFix": "eslint . --ext .ts",
"test": "nyc mocha",
"prepublishOnly": "npm run test && npm run build",
"webpack": "npm run clean && ./scripts/regenerate_protos.sh && ./scripts/regenerate_pay_id_api.sh && npm run lint && tsc --noEmit && webpack && copyfiles -u 3 './src/XRP/Generated/**/*' ./build/XRP/Generated && copyfiles -u 3 './src/ILP/Generated/**/*' ./build/ILP/Generated"
},
"homepage": "https://github.com/xpring-eng/Xpring-JS#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@openapitools/openapi-generator-cli": "^2.0.2",
"@types/chai": "4.2.14",
"@types/google-protobuf": "^3.7.2",
"@types/mocha": "8.2.0",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-loader": "^8.1.0",
"chai": "4.3.0",
"codecov": "^3.7.1",
"copyfiles": "^2.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.3",
"grpc-tools": "1.10.0",
"grpc_tools_node_protoc_ts": "^5.0.0",
"mocha": "^8.0.1",
"nock": "^13.0.0",
"nyc": "^15.1.0",
"prettier": "^2.0.4",
"source-map-support": "0.5.19",
"ts-loader": "^8.0.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.3",
"webpack": "^5.4.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"@grpc/grpc-js": "^1.1.1",
"assert": "^2.0.0",
"axios": "^0.21.1",
"big-integer": "^1.6.48",
"bignumber.js": "^9.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.2",
"crypto-browserify": "^3.12.0",
"google-protobuf": "^3.12.2",
"grpc-web": "1.2.1",
"isomorphic-ws": "^4.0.1",
"os-browserify": "^0.3.0",
"stream-browserify": "^3.0.0",
"url": "^0.11.0",
"util": "^0.12.3",
"ws": "^7.4.0",
"xhr2": "0.2.1",
"xpring-common-js": "6.2.9"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"all": true,
"check-leaks": true
}
}