forked from input-output-hk/cardano-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.9 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
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
{
"name": "cardano-sdk",
"version": "0.2.0",
"private": true,
"description": "An SDK for interacting with the Cardano blockchain",
"engines": {
"node": ">=14.15.0 <15.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run build",
"predocs": "yarn build",
"docs": "typedoc --packages . && yarn workspaces run coverage && node collectCoverage.mjs",
"cleanup": "yarn workspaces run cleanup && shx rm -rf node_modules",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"tscNoEmit": "yarn workspaces run tscNoEmit",
"prepare": "husky install",
"pre-commit": "lint-staged",
"mainnet:up": "DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -p sdk-mainnet up",
"mainnet:down": "docker-compose -p sdk-mainnet down",
"test": "yarn workspaces run test",
"test:e2e": "yarn workspaces run test:e2e",
"test:debug": "DEBUG=true yarn workspaces run test",
"testnet:up": "DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 OGMIOS_PORT=1338 NETWORK=testnet docker-compose -p sdk-testnet up",
"testnet:down": "docker-compose -p sdk-testnet down",
"bump-version": "npx standard-version"
},
"lint-staged": {
"*(apps/**/*.{js,ts}|packages/!(*golden-test-generator)/**/*.{js,ts})": [
"yarn lint",
"yarn tscNoEmit"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/cardano-js-sdk.git"
},
"keywords": [
"Cardano"
],
"contributors": [
"Rhys Bartels-Waller <rhys.bartelswaller@iohk.io> (https://iohk.io)",
"Sam Jeston <sam.jeston@gmail.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-js-sdk/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-js-sdk#readme",
"devDependencies": {
"@atixlabs/eslint-config": "^1.2.3",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^26.0.24",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsdoc": "^36.0.7",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sonarjs": "^0.9.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^35.0.0",
"eslint-watch": "^7.0.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.1",
"jest": "^27.5.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.21.6",
"typescript": "^4.3.5"
}
}