-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
81 lines (81 loc) · 3.37 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
{
"name": "ren-js",
"private": true,
"scripts": {
"link-packages": "yarn lerna link --contents build",
"clean": "lerna run clean --scope @renproject/* && yarn rimraf ./node_modules && yarn && yarn link-packages && yarn build",
"build": "yarn link-packages --loglevel=error && lerna run build --scope \"@renproject/*\"",
"build-package": "build() { yarn link-packages --loglevel=error && lerna run build --scope \"@renproject/${@:-\"*\"}\"; }; build",
"watch": "yarn build && lerna run watch --parallel --scope @renproject/*",
"lint": "lerna run lint --scope @renproject/*",
"fix": "lerna run fix --scope @renproject/*",
"test-no-bail": "lerna run test --no-bail --scope @renproject/*",
"cov:all": "lerna run cov --scope @renproject/*",
"test:all": "lerna run test --scope @renproject/*",
"cov": "run-s build test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
"cov:html": "nyc report --reporter=html",
"test": "yarn test:unit",
"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",
"test:long": "ts-mocha --color --sort --bail --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts",
"link:all": "lerna run link --scope @renproject/*",
"unlink:all": "lerna run unlink --scope @renproject/*",
"doc:build": "yarn typedoc --entryPointStrategy packages . --readme ./README.md",
"doc:publish": "yarn doc:build && gh-pages --repo git@github.com:renproject/ren-js-v3-docs.git -m \"[ci skip] Updates\" -d docs"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"babel-core": "6.26.3",
"babel-loader": "8.2.5",
"babel-polyfill": "^6.26.0",
"bignumber.js": "9.0.2",
"chai": "4.3.6",
"chalk": "4.1.2",
"codecov": "3.8.3",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.1",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.4",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-security": "1.5.0",
"gh-pages": "4.0.0",
"lerna": "5.3.0",
"mocha": "10.0.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"send-crypto": "0.2.37",
"ts-loader": "9.3.1",
"ts-mocha": "10.0.0",
"typedoc": "0.23.10",
"typescript": "4.7.4",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-node-externals": "3.0.0"
},
"workspaces": [
"packages/*",
"packages/chains/*"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "all",
"endOfLine": "lf",
"arrowParens": "always"
}
}