-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.33 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
{
"name": "qiwi-substrate-monorepo",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"clean": "yarn workspaces foreach -tp run clean",
"build": "yarn workspaces foreach -tp run build && yarn format",
"test": "node_modules/.bin/jest && yarn lint && yarn test:libdef",
"test:libdef": "yarn workspaces foreach -p run test:libdef",
"test:report": "yarn test && yarn coveralls:push",
"coveralls:push": "cat ./coverage/lcov.info | npm_config_yes=true npx coveralls || exit 0",
"lint": "node_modules/.bin/eslint 'packages/**/src/**/*.ts' --ignore-pattern 'packages/**/*.d.ts' --fix | snazzy",
"format": "node_modules/.bin/prettier --write \"packages/**/src/main/**/*.ts\"",
"docs": "node_modules/.bin/typedoc packages/**/src/main && touch ./docs/.nojekyll || exit 0",
"deps:upgrade": "npm_config_yes=true npx npm-upgrade-monorepo",
"deps:auditfix": "npm_config_yes=true npx yarn-audit-fix",
"postupdate": "yarn && yarn deps:auditfix && yarn build && yarn test"
},
"prettier": "prettier-config-qiwi",
"devDependencies": {
"snazzy": "9.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/substrate.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/qiwi/substrate/issues"
},
"packageManager": "[email protected]"
}