-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 975 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
{
"name": "@getsafle/vault-sol-controller",
"version": "1.0.1",
"description": "Solana chain controller for Safle Vault",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint --fix . --ext .js",
"test": "mocha \"test/**.js\" --timeout 15000",
"test:coverage": "npm run cover:unit && npm run cover:report",
"test:coveragehtml": "npm run cover:unit && npm run cover:reporthtml",
"cover:unit": "nyc --silent npm run test",
"cover:report": "nyc report --reporter=lcov --reporter=text --report-dir='./jscoverage'",
"cover:reporthtml": "nyc report --reporter=html --report-dir='./jscoverage'"
},
"author": "",
"license": "MIT",
"dependencies": {
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.1",
"bip39": "^3.1.0",
"bs58": "^5.0.0",
"ed25519-hd-key": "^1.3.0",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"obs-store": "^4.0.3",
"tweetnacl": "^1.0.3"
}
}