This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.29 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
{
"name": "xpring-common-js",
"version": "6.2.9",
"description": "Common JavaScript for use within the Xpring Platform",
"repository": "https://github.com/xpring-eng/xpring-common-js.git",
"license": "MIT",
"author": "Xpring Engineering",
"main": "build/src/index.js",
"files": [
"build/**/*"
],
"scripts": {
"build": "npm run clean && ./scripts/regenerate_protos.sh && npm run lint && tsc -d && copyfiles -u 3 './src/XRP/generated/**/*' ./build/src/XRP/generated",
"clean": "rm -rf ./src/generated ./dist ./build",
"lint": "eslint . --ext .ts --fix",
"lintNoFix": "eslint . --ext .ts",
"prepublishOnly": "npm run test && npm run build",
"pretest": "npm run clean && ./scripts/regenerate_protos.sh && npm run lint && tsc --noEmit",
"test": "nyc mocha",
"webpack": "npm run clean && ./scripts/regenerate_protos.sh && npm run lint && tsc --noEmit && webpack && copyfiles -u 3 './src/XRP/generated/**/*' ./dist/XRP/generated"
},
"dependencies": {
"@payid-org/utils": "1.0.0",
"bip32": "2.0.6",
"bip39": "^3.0.2",
"google-protobuf": "3.13.0",
"grpc-web": "1.2.1",
"ripple-address-codec": "4.1.1",
"ripple-binary-codec": "1.1.0",
"ripple-keypairs": "^1.0.0"
},
"devDependencies": {
"@fintechstudios/eslint-plugin-chai-as-promised": "^3.0.2",
"@types/chai": "4.2.14",
"@types/google-protobuf": "^3.7.2",
"@types/mocha": "8.0.3",
"@types/node": "^14.0.4",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@xpring-eng/eslint-config-base": "^0.9.0",
"chai": "4.2.0",
"copyfiles": "^2.2.0",
"eslint": "^7.3.1",
"eslint-plugin-array-func": "^3.1.6",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^28.5.1",
"eslint-plugin-mocha": "^7.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-tsdoc": "^0.2.5",
"grpc-tools": "1.9.1",
"mocha": "8.2.0",
"nyc": "15.1.0",
"prettier": "^2.0.4",
"source-map-support": "0.5.19",
"ts-loader": "^8.0.0",
"ts-node": "9.0.0",
"typescript": "3.9.7",
"typescript-eslint-parser": "22.0.0",
"webpack": "4.44.2",
"webpack-cli": "4.2.0"
},
"engines": {
"node": ">=10.10.0"
}
}