-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.44 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
47
48
49
50
51
52
53
54
55
{
"name": "kuber-client",
"version": "3.1.4",
"description": "Javascript client library for kuber server",
"main": "src/index.ts",
"prepublish": "tsc && cp package.json Readme.md ./dist && ",
"scripts": {
"tsc": "tsc",
"compile": "tsc compile",
"build": "node ./scripts/build.js",
"publish": "npm run build && cd ./dist && npm publish",
"test": "jest",
"mocha": "ts-mocha",
"version": "npm version --no-git-tag-version",
"patch": "npm version patch --no-git-tag-version && npm run publish",
"minorVersion": "npm version minor --no-git-tag-version",
"majorVersion": "npm version major --no-git-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sireto/kuber-client-js.git"
},
"keywords": [
"kuber",
"cardano-serialization-lib",
"cardano",
"plutus",
"payment",
"development"
],
"author": "Sudip Bhattarai",
"license": "ISC",
"bugs": {
"url": "https://github.com/sireto/kuber-jsclient/issues"
},
"homepage": "https://github.com/sireto/kuber-jsclient#readme",
"dependencies": {
"axios": "^1.3.6",
"buffer": "^6.0.3",
"cbor-x": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"esbuild": "^0.17.8",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-runner-tsc": "^1.6.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"files": [
"src"
]
}