forked from radixdlt/radixdlt-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.12 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
{
"name": "radixdlt-javascript",
"version": "1.0.0",
"bugs": {
"url": "https://github.com/radixdlt/radixdlt-javascript/issues"
},
"devDependencies": {
"@octokit/core": "^3.2.4",
"@trust/webcrypto": "^0.9.2",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-functional": "^3.1.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsdoc": "^30.7.13",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"jest-environment-jsdom": "25",
"jest-fetch-mock": "^3.0.3",
"jest-json-schema": "^2.1.0",
"jest-runner-groups": "^2.0.1",
"jest-watch-typeahead": "^0.6.1",
"lerna": "^3.22.1",
"lint-staged": ">=10",
"pinst": "^2.1.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.5.2"
},
"engines": {
"yarn": "^1.22.4",
"node": ">=15.5.0 <18"
},
"homepage": "https://github.com/radixdlt/radixdlt-javascript#README",
"keywords": [
"eXRD",
"Decentralized",
"DeFi",
"DLT",
"Distributed Ledger Technology",
"Crypto",
"Cryptocurrency",
"Ledger",
"Money",
"Public Network",
"Radix",
"RadixDLT",
"Radix DLT",
"XRD"
],
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/radixdlt/radixdlt-javascript.git"
},
"scripts": {
"setup-dev": "yarn && yarn bootstrap && yarn link-all && yarn build",
"bootstrap": "lerna bootstrap",
"link-all": "yarn lerna exec --parallel yarn link",
"unlink-all": "lerna exec --parallel --bail=false yarn unlink",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn eslint --fix . --ext .js,.jsx,.ts,.tsx",
"build": "yarn build:ts",
"build:ts": "tsc -b -f tsconfig.json",
"bundle": "ts-node -P scripts/tsconfig.json scripts/bundle.ts umd,esm",
"clean": "lerna clean --yes && lerna run clean && rm -rf includes",
"baseTest": "jest --rootDir=.",
"test": "yarn baseTest -c jest.config.js --testTimeout=10000",
"test:baseIntegration": "yarn baseTest --runInBand --testTimeout=20000 --verbose true",
"test:integration": "NODE_TLS_REJECT_UNAUTHORIZED=0 yarn test:baseIntegration -c jest.config.integration.js",
"test:ledger": "yarn test:baseIntegration --coverage=false -c ./packages/hardware-ledger/jest.config.ledger.js",
"test:ledger:hw": "yarn test:ledger ./packages/hardware-ledger/test/physical-devices/ledgerNano.test.integration.ts",
"test:ledger:account": "yarn test:ledger ./packages/hardware-ledger/test/physical-devices/signingKeychain.test.integration.ts",
"test:ledger:app": "yarn test:ledger ./packages/hardware-ledger/test/physical-devices/radix.test.integration.ts",
"release": "yarn build && yarn bootstrap && lerna publish --conventional-commits",
"format": "prettier --write '**/*.{ts,tsx,js}' --config .prettierrc",
"sanity": "yarn format && yarn build && yarn test"
},
"workspaces": [
"packages/*"
]
}