This repository was archived by the owner on Nov 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "ripple-keypairs",
"version": "1.0.3",
"description": "Cryptographic key pairs for the XRP Ledger",
"scripts": {
"compile": "tsc",
"test": "tsc && nyc mocha",
"lint": "eslint . --ext .ts --fix",
"prepublish": "npm run lint && npm test",
"coverage": "nyc --reporter=lcov mocha && codecov"
},
"files": [
"dist/*"
],
"main": "dist/",
"directories": {
"test": "test"
},
"dependencies": {
"bn.js": "^5.1.1",
"brorand": "^1.0.5",
"elliptic": "^6.5.4",
"hash.js": "^1.0.3",
"ripple-address-codec": "^4.0.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.3",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.16.0",
"codecov": "^3.6.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"source-map-support": "^0.5.16",
"ts-node": "^10.2.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git://github.com/ripple/ripple-keypairs.git"
},
"license": "ISC",
"engines": {
"node": ">= 10",
"npm": ">=7.0.0"
}
}