forked from input-output-hk/cardano-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.75 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
81
82
83
84
85
86
87
88
{
"name": "@cardano-sdk/golden-test-generator",
"version": "0.7.18",
"description": "Generate golden test files for a range of Cardano concepts",
"engines": {
"node": ">=14.20.1"
},
"bin": "dist/cjs/index.js",
"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"
},
"sideEffects": false,
"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",
"circular-deps:check": "madge --circular dist/cjs",
"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",
"cli": "ts-node --transpile-only ./src/index.ts",
"dev": "API_PORT=3000 OGMIOS_HOST=localhost OGMIOS_PORT=1337 ts-node-dev ./src/index.ts",
"lint": "eslint -c ../../complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"prepkg": "yarn build",
"pkg": "yarn build && pkg -o build/golden-test-generator .",
"prestart": "yarn build",
"prepack": "yarn build",
"pretest": "yarn build",
"test": "jest -c ./jest.config.js",
"test:build:verify": "tsc --build ./test",
"test:e2e": "shx echo 'test:e2e' command not implemented yet",
"coverage": "shx echo No coverage report for this package"
},
"dependencies": {
"@cardano-sdk/core": "workspace:~",
"@cardano-sdk/ogmios": "workspace:~",
"@cardano-sdk/util": "workspace:~",
"@cardano-sdk/util-dev": "workspace:~",
"bunyan": "^1.8.15",
"chalk": "^4.1.1",
"clear": "^0.1.0",
"cli-progress": "^3.9.0",
"commander": "^8.0.0",
"fs-extra": "^10.0.0",
"git-last-commit": "^1.0.0",
"object-hash": "^2.2.0",
"ts-log": "^2.2.3"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/fs-extra": "^9.0.12",
"@types/object-hash": "^2.1.1",
"@types/ws": "^7.4.6",
"eslint": "^7.32.0",
"jest": "^28.1.3",
"madge": "^5.0.1",
"npm-run-all": "^4.1.5",
"pkg": "^5.3.0",
"shx": "^0.3.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"pkg": {
"targets": [
"node14-linux-x64",
"node14-macos-x64"
]
},
"files": [
"dist/*",
"!dist/tsconfig.tsbuildinfo",
"LICENSE",
"NOTICE"
]
}