forked from input-output-hk/cardano-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.92 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
89
90
91
92
93
{
"name": "cardano-sdk",
"version": "0.4.0",
"private": true,
"description": "An SDK for interacting with the Cardano blockchain",
"engines": {
"node": ">=14.20.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -v run build",
"circular-deps:check": "yarn workspaces foreach -v run circular-deps:check",
"cleanup-build": "yarn workspaces foreach -v run cleanup && yarn install && yarn workspaces foreach -v run build",
"reinstall": "yarn workspaces foreach -v run cleanup:nm && yarn install",
"rebuild": "yarn workspaces foreach -v run cleanup:dist && yarn workspaces foreach -v run build",
"predocs": "yarn build",
"docs:typedoc": "typedoc",
"docs:coverage:build": "yarn workspaces foreach -v run coverage",
"docs:coverage:collect": "node collectCoverage.mjs",
"docs:coverage": "run-s docs:coverage:build docs:coverage:collect",
"docs": "run-s docs:typedoc docs:coverage",
"cleanup": "yarn workspaces foreach -v run cleanup && shx rm -rf node_modules",
"cleanup:dist": "yarn workspaces foreach -v run cleanup:dist",
"lint": "eslint -c complete.eslintrc.js --max-warnings=0 \"packages/*/src/**/*.ts\" \"packages/*/test/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"config:update": "git subrepo pull packages/cardano-services/config --message='chore: git subrepo pull packages/cardano-services/config'",
"tscNoEmit": "yarn workspaces foreach -v run tscNoEmit",
"prepare": "husky install",
"pre-commit": "lint-staged",
"version": "yarn install --mode=skip-build && git add yarn.lock yarn-project.nix",
"publish:rc": "lerna publish --conventional-prerelease --allow-branch master --preid rc --pre-dist-tag rc --create-release github -m \"ci: publish rc packages [skip actions]\" --sign-git-commit",
"publish:stable": "lerna publish --conventional-graduate --allow-branch master --create-release github -m \"ci: publish packages [skip actions]\" --sign-git-commit",
"test": "yarn workspaces foreach -v run test",
"test:build:verify": "yarn workspaces foreach -v run test:build:verify",
"test:e2e": "yarn workspaces foreach -v run test:e2e",
"test:debug": "DEBUG=true yarn workspaces foreach -v run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/cardano-js-sdk.git"
},
"keywords": [
"Cardano"
],
"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",
"@lerna-lite/cli": "^2.1.0",
"@lerna-lite/publish": "^2.1.0",
"@types/jest": "^26.0.24",
"@types/node": "^18.11.8",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^2.7.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": "^28.1.3",
"lint-staged": "^13.0.1",
"node-gyp": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"shx": "^0.3.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.23.24",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]"
}