forked from tango-crypto/cardano-wallet-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "cardano-wallet-js",
"version": "1.2.3",
"description": " javascript/typescript client for the official cardano-wallet api",
"author": "Leobel Izquierdo <[email protected]>",
"license": "ISC",
"keywords": [
"cardano",
"wallet",
"api",
"javascript",
"typescript"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc --outDir dist/",
"prepublishOnly": "npm run build",
"test": "mocha -r ts-node/register 'test/**/*.ts'"
},
"directories": {
"bin": "cli"
},
"repository": {
"type": "git",
"url": "https://github.com/tango-crypto/cardano-wallet-js.git"
},
"dependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "^7.0.0",
"axios": "^0.21.1",
"bip39": "^3.0.4",
"chai": "^4.3.4",
"mocha": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^12.11.5",
"cd": "^0.3.3",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"ts-node": "^9.1.1",
"typescript": "^3.6.4"
}
}