This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "ripple-binary-codec",
"version": "1.1.3",
"description": "XRP Ledger binary codec",
"files": [
"dist/*",
"bin/*",
"test/*"
],
"main": "dist/",
"directories": {
"test": "test"
},
"dependencies": {
"assert": "^2.0.0",
"buffer": "5.6.0",
"big-integer": "^1.6.48",
"create-hash": "^1.2.0",
"decimal.js": "^10.2.0",
"ripple-address-codec": "^4.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/node": "^14.0.10",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.4",
"typescript": "^3.9.5"
},
"scripts": {
"compile": "tsc && cp ./src/enums/definitions.json ./dist/enums",
"prepare": "npm run compile && npm test",
"test": "jest",
"lint": "eslint . --ext .ts --ext .test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ripple/ripple-binary-codec.git"
},
"bugs": {
"url": "https://github.com/ripple/ripple-binary-codec/issues"
},
"homepage": "https://github.com/ripple/ripple-binary-codec#readme",
"license": "ISC",
"readmeFilename": "README.md",
"prettier": {
"semi": true
},
"engines": {
"node": ">=10.22.0",
"npm": ">=7.0.0"
}
}