generated from qiwi/blank-ts-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "@qiwi/nexus",
"version": "0.0.0",
"description": "Components for working with Nexus",
"main": "target/es5/index.ts",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"clean": "lerna run clean",
"build": "yarn clean && lerna run build --stream --concurrency 2",
"bootstrap": "lerna bootstrap",
"lint": "lerna run lint",
"jest": "jest",
"test:report": "yarn test && yarn coveralls:push",
"test": "yarn lint && yarn jest",
"test:concurrent": "lerna run test --concurrency 1 --stream --no-prefix && yarn coverage:merge",
"coverage:merge": "node scripts/js/coverage-merge.js",
"coveralls:push": "cat ./coverage/lcov.info | coveralls || echo 'coveralls push failed :(' && exit 0",
"postupdate": "yarn && yarn bootstrap && npx yarn-audit-fix --audit-level=moderate && yarn build && yarn test"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"coveralls": "^3.1.1",
"find-git-root": "^1.0.4",
"jest": "^27.4.5",
"lerna": "^4.0.0",
"snazzy": "^9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/nexus.git"
},
"dependencies": {
"tslib": "^2.3.1"
}
}