-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 KB
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
{
"name": "@getsafle/vault-concordium-controller",
"version": "1.0.2",
"description": "Concordium chain controller for Safle Vault",
"main": "src/index.js",
"scripts": {
"test-audit": "npm audit",
"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'"
},
"keywords": [
"concordium",
"vault"
],
"repository": {
"type": "git",
"url": "git+https://github.com/getsafle/vault-concordium-controller.git"
},
"author": "safle",
"license": "MIT",
"contributors": [
{
"name": "Vipul",
"email": "vipul@getsafle.com"
}
],
"homepage": "https://github.com/getsafle/vault-concordium-controller#readme",
"dependencies": {
"@concordium/web-sdk": "^9.0.0",
"bip39": "^3.1.0",
"events": "^3.3.0",
"mocha": "^11.1.0",
"node-fetch": "^3.3.2",
"obs-store": "^4.0.3"
}
}