-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.64 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
{
"name": "@qiwi/json-rpc",
"workspaces": [
"packages/*"
],
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "lerna clean --yes && lerna run clean",
"prebuild": "tsc -b packages/facade/tsconfig.es5.json",
"build": "yarn clean && yarn prebuild && lerna run build --stream --concurrency 2",
"bootstrap": "lerna bootstrap",
"lint": "lerna run lint --concurrency 2 --stream",
"test:unit": "jest",
"test": "yarn lint && yarn test:unit",
"//test": "lerna run test --concurrency 1 --stream --no-prefix && yarn coverage:merge",
"test:report": "yarn test && yarn coveralls:push",
"coverage:merge": "node scripts/js/coverage-merge.js",
"codeclimate:push": "codeclimate-test-reporter < ./coverage/lcov.info",
"coveralls:push": "cat ./coverage/lcov.info | coveralls || echo 'coveralls push failed :(' && exit 0",
"docs": "typedoc packages/**/src/main",
"postupdate": "yarn && yarn bootstrap && yarn build && yarn test"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.172",
"@types/node": "^16.4.11",
"coveralls": "^3.1.1",
"esm": "^3.2.25",
"find-git-root": "^1.0.4",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lodash": "^4.17.21",
"replace-in-file": "^6.2.0",
"snazzy": "^9.0.0",
"ts-jest": "^27.0.4",
"typedoc": "^0.21.5",
"typescript": "^4.3.5",
"yargs": "^17.0.1",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/json-rpc.git"
},
"bugs": {
"url": "https://github.com/qiwi/json-rpc/issues"
},
"homepage": "https://github.com/qiwi/json-rpc#readme"
}