|
12 | 12 | "test-no-bail": "lerna run test --no-bail --scope @renproject/*",
|
13 | 13 | "cov:all": "lerna run cov --scope @renproject/*",
|
14 | 14 | "test:all": "lerna run test --scope @renproject/*",
|
15 |
| - "cov": "run-s build test:unit cov:html && open-cli coverage/index.html", |
| 15 | + "cov": "run-s build test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"", |
16 | 16 | "cov:html": "nyc report --reporter=html",
|
17 | 17 | "test": "yarn test:unit",
|
18 | 18 | "test:unit": "nyc ./node_modules/ts-mocha/bin/ts-mocha --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./packages/*/test/**/*.spec.ts ./packages/chains/*/test/**/*.spec.ts",
|
|
23 | 23 | "doc:publish": "yarn doc:build && gh-pages --repo [email protected]:renproject/ren-js-v3-docs.git -m \"[ci skip] Updates\" -d docs"
|
24 | 24 | },
|
25 | 25 | "devDependencies": {
|
26 |
| - "@istanbuljs/nyc-config-typescript": "^1.0.2", |
27 |
| - "@types/chai": "^4.3.1", |
28 |
| - "@types/chai-as-promised": "^7.1.5", |
29 |
| - "@types/mocha": "^9.1.1", |
30 |
| - "@typescript-eslint/eslint-plugin": "^5.32.0", |
31 |
| - "@typescript-eslint/parser": "^5.32.0", |
32 |
| - "babel-core": "^6.26.3", |
33 |
| - "babel-loader": "^8.2.5", |
34 |
| - "babel-plugin-import": "^1.13.5", |
| 26 | + "@istanbuljs/nyc-config-typescript": "1.0.2", |
| 27 | + "@types/chai": "4.3.1", |
| 28 | + "@types/mocha": "9.1.1", |
| 29 | + "@typescript-eslint/eslint-plugin": "5.32.0", |
| 30 | + "@typescript-eslint/parser": "5.32.0", |
| 31 | + "babel-core": "6.26.3", |
| 32 | + "babel-loader": "8.2.5", |
35 | 33 | "babel-polyfill": "^6.26.0",
|
36 |
| - "babel-runtime": "^6.26.0", |
37 |
| - "bignumber.js": "^9.0.2", |
| 34 | + "bignumber.js": "9.0.2", |
38 | 35 | "chai": "4.3.6",
|
39 |
| - "chai-as-promised": "^7.1.1", |
40 | 36 | "chalk": "4.1.2",
|
41 |
| - "codecov": "^3.8.3", |
42 |
| - "cross-env": "^7.0.3", |
43 |
| - "cz-conventional-changelog": "^3.3.0", |
44 |
| - "dotenv": "^16.0.1", |
45 |
| - "eslint": "^8.21.0", |
46 |
| - "eslint-config-prettier": "^8.5.0", |
47 |
| - "eslint-plugin-import": "^2.26.0", |
48 |
| - "eslint-plugin-jsdoc": "^39.3.4", |
49 |
| - "eslint-plugin-no-null": "^1.0.2", |
50 |
| - "eslint-plugin-react": "^7.30.1", |
51 |
| - "eslint-plugin-security": "^1.5.0", |
52 |
| - "ethers": "^5.6.9", |
53 |
| - "gh-pages": "^4.0.0", |
54 |
| - "lerna": "^5.3.0", |
55 |
| - "mocha": "^10.0.0", |
56 |
| - "npm-run-all": "^4.1.5", |
57 |
| - "nyc": "^15.1.0", |
58 |
| - "open-cli": "^7.0.1", |
59 |
| - "prettier": "^2.7.1", |
60 |
| - "rimraf": "^3.0.2", |
61 |
| - "send-crypto": "^0.2.37", |
62 |
| - "throat": "^6.0.1", |
63 |
| - "ts-loader": "^9.3.1", |
64 |
| - "ts-mocha": "^10.0.0", |
65 |
| - "typedoc": "^0.23.10", |
| 37 | + "codecov": "3.8.3", |
| 38 | + "cz-conventional-changelog": "3.3.0", |
| 39 | + "dotenv": "16.0.1", |
| 40 | + "eslint": "8.21.0", |
| 41 | + "eslint-config-prettier": "8.5.0", |
| 42 | + "eslint-plugin-import": "2.26.0", |
| 43 | + "eslint-plugin-jsdoc": "39.3.4", |
| 44 | + "eslint-plugin-no-null": "1.0.2", |
| 45 | + "eslint-plugin-react": "7.30.1", |
| 46 | + "eslint-plugin-security": "1.5.0", |
| 47 | + "gh-pages": "4.0.0", |
| 48 | + "lerna": "5.3.0", |
| 49 | + "mocha": "10.0.0", |
| 50 | + "npm-run-all": "4.1.5", |
| 51 | + "nyc": "15.1.0", |
| 52 | + "prettier": "2.7.1", |
| 53 | + "rimraf": "3.0.2", |
| 54 | + "send-crypto": "0.2.37", |
| 55 | + "ts-loader": "9.3.1", |
| 56 | + "ts-mocha": "10.0.0", |
| 57 | + "typedoc": "0.23.10", |
66 | 58 | "typescript": "4.7.4",
|
67 | 59 | "webpack": "5.74.0",
|
68 |
| - "webpack-cli": "^4.10.0", |
69 |
| - "webpack-node-externals": "^3.0.0" |
| 60 | + "webpack-cli": "4.10.0", |
| 61 | + "webpack-node-externals": "3.0.0" |
70 | 62 | },
|
71 | 63 | "workspaces": [
|
72 | 64 | "packages/*",
|
|
0 commit comments