-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.94 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
{
"name": "xrpl-validator-domains",
"version": "0.1.0",
"description": "Decentralized domain verification for the XRP Ledger",
"main": "dist/",
"author": "Nathan Nichols",
"type": "commonjs",
"license": "MIT",
"unpkg": "build/xrpl-validator-domains-min.js",
"scripts": {
"prepare": "yarn lint && yarn build",
"build:node": "tsc --build tsconfig.build.json",
"build:web": "webpack",
"build": "yarn build:node && yarn build:web",
"test": "nyc mocha -r ts-node/register test/*.test.ts",
"lint": "eslint . --ext .ts --max-warnings 0 && eslint .eslintrc.js --max-warnings 0"
},
"dependencies": {
"axios": "^0.21.1",
"ripple-address-codec": "^4.1.1",
"ripple-binary-codec": "^1.1.3",
"ripple-keypairs": "^1.0.2",
"toml": "^3.0.0"
},
"devDependencies": {
"@fintechstudios/eslint-plugin-chai-as-promised": "^3.0.2",
"@types/chai": "^4.2.14",
"@types/elliptic": "^6.4.12",
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"@xpring-eng/eslint-config-base": "^0.10.0",
"assert": "^2.0.0",
"buffer": "^6.0.2",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"eslint-plugin-array-func": "^3.1.6",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^29.1.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.6",
"mocha": "^8.2.0",
"nock": "^13.0.5",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-node": "^9.0.0",
"typescript": "4.0.5",
"webpack": "^5.6.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/xpring-eng/xrpl-validator-domains.git"
}
}