-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 993 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-stacks-controller",
"version": "1.0.5",
"description": "Stacks 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": {
"@stacks/connect": "^7.7.1",
"@stacks/network": "^6.11.3",
"@stacks/transactions": "^6.12.1",
"@stacks/wallet-sdk": "^6.12.1",
"axios": "^1.6.8",
"bn.js": "^5.2.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"obs-store": "^4.0.3"
}
}