forked from input-output-hk/cardano-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@cardano-sdk/cardano-services-client",
"version": "0.6.0",
"description": "Cardano Services Client",
"engines": {
"node": ">=14.20.1"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": "https://github.com/input-output-hk/cardano-js-sdk",
"publishConfig": {
"access": "public"
},
"contributors": [
"Rhys Bartels-Waller <[email protected]> (https://iohk.io)",
"Martynas Kazlauskas <[email protected]> (https://iohk.io)",
"Daniele Ricci <[email protected]> (https://iohk.io)",
"Ivaylo Andonov <[email protected]> (https://iohk.io)",
"Mircea Hasegan <[email protected]> (https://iohk.io)",
"Angel Castillo Bacigalupi <[email protected]> (https://iohk.io)",
"Seung Eun Song <[email protected]> (https://iohk.io)",
"Dmytro Iakymenko <[email protected]> (https://iohk.io)",
"Tomislav Horaček <[email protected]> (https://iohk.io)",
"Michael Chappell <[email protected]> (https://iohk.io)",
"Leonel Gobbi <[email protected]> (https://www.globant.com)",
"Juan Cruz Vieiro <[email protected]> (https://www.globant.com)"
],
"license": "Apache-2.0",
"scripts": {
"build:esm": "tsc -p src/tsconfig.json --outDir ./dist/esm --module es2020",
"build:cjs": "tsc --build src",
"build": "run-s build:cjs build:esm module-fixup",
"module-fixup": "shx cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
"tscNoEmit": "shx echo typescript --noEmit command not implemented yet",
"cleanup:dist": "shx rm -rf dist",
"cleanup:nm": "shx rm -rf node_modules",
"cleanup": "run-s cleanup:dist cleanup:nm",
"lint": "eslint -c ../../complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"test": "jest -c ./jest.config.js",
"test:build:verify": "tsc --build ./test",
"test:e2e": "shx echo 'test:e2e' command not implemented yet",
"coverage": "yarn test --coverage",
"prepack": "yarn build",
"test:debug": "DEBUG=true yarn test"
},
"devDependencies": {
"@cardano-sdk/util-dev": "^0.5.0",
"@types/validator": "^13.7.1",
"axios-mock-adapter": "^1.20.0",
"eslint": "^7.32.0",
"express": "^4.17.3",
"get-port-please": "^2.5.0",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"dependencies": {
"@cardano-sdk/core": "^0.6.0",
"@cardano-sdk/util": "^0.6.0",
"axios": "^0.27.2",
"class-validator": "^0.13.1",
"json-bigint": "~1.0.0",
"ts-log": "^2.2.4"
},
"files": [
"dist/*",
"!dist/tsconfig.tsbuildinfo",
"LICENSE",
"NOTICE"
]
}