forked from Palem1988/ripple-address-codec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 851 Bytes
/
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
{
"name": "ripple-address-codec",
"version": "4.0.0",
"description": "encodes/decodes base58 encoded XRP Ledger identifiers",
"files": [
"dist/*",
"build/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "ISC",
"dependencies": {
"@types/base-x": "^3.0.0",
"base-x": "3.0.4",
"create-hash": "^1.1.2"
},
"repository": {
"type": "git",
"url": "git://github.com/ripple/ripple-address-codec.git"
},
"prepublish": "tsc",
"prepublishOnly": "tslint -p ./ && jest",
"scripts": {
"compile": "tsc",
"test": "jest",
"lint": "tslint -p ./"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^10.12.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.19.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.3"
}
}