-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.22 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
41
42
43
44
45
46
47
48
49
{
"name": "@tango-crypto/tangocrypto-js",
"version": "1.1.3",
"description": "Javascript client for tangocrypto API",
"license": "Apache-2.0",
"author": "tangocrypto.com",
"repository": {
"type": "git",
"url": "https://github.com/tango-crypto/tangocrypto-js.git"
},
"keywords": [
"tangocrypto",
"cardano",
"api",
"javascript",
"typescript"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"sideEffects": false,
"scripts": {
"build": "tsc",
"build:esm": "tsc && tsc -p tsconfig.esm.json",
"prepare": "npm run build",
"test": "mocha -r ts-node/register 'test/**/*.ts'"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"dotenv": "^16.0.2",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "^11.2.1",
"axios": "^0.27.2",
"bip39": "^3.0.4",
"borc": "^3.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"form-data": "^4.0.0"
}
}