-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.95 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/uniconfig-monorepo",
"workspaces": [
"packages/*"
],
"version": "0.0.0",
"private": true,
"esm": {
"mode": "all",
"cjs": true
},
"scripts": {
"clean": "yarn workspaces foreach --parallel --topological-dev --no-private run clean",
"build": "yarn workspaces foreach --parallel --topological-dev --no-private run build",
"build:es6": "yarn workspaces foreach --parallel --topological-dev --no-private run build:es6",
"build:es5": "yarn workspaces foreach --parallel --topological-dev --no-private run build:es5",
"build:clean": "yarn clean && yarn run build",
"test": "yarn lint && yarn jest",
"test:report": "yarn test && yarn coveralls:push",
"coverage:merge": "node scripts/js/coverage-merge.js",
"codeclimate:push": "codeclimate-test-reporter < ./coverage/lcov.info || exit 0",
"coveralls:push": "cat ./coverage/lcov.info | coveralls || exit 0",
"jest": "NODE_ENV=test BAZ=baz jest --no-cache --maxWorkers=100 -w=1 --detectOpenHandles --config jest.config.json",
"test:parallel": "yarn workspaces foreach -p run --concurrency 1 --stream --no-prefix test",
"jest:parallel": "yarn workspaces foreach -p run jest --concurrency=2 --parallel",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"rebuild": "yarn && yarn build && yarn test",
"docs": "docma -c ./docma.json",
"show:docs": "node scripts/js/docsapp.js",
"postupdate": "yarn && npx yarn-audit-fix && yarn build && yarn test"
},
"devDependencies": {
"@qiwi/docma": "^3.3.10",
"@types/jest": "^29.5.5",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"lcov-parse": "^1.0.0",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-qiwi": "^1.11.3",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/uniconfig.git"
},
"packageManager": "[email protected]"
}