-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.53 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
{
"name": "@qiwi/masker-monorepo",
"version": "0.0.0",
"description": "Composite data masking utility",
"main": "target/es5/index.ts",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"clean": "rimraf packages/*/target packages/*/typings packages/*/buildcache packages/*/docs packages/*/coverage",
"build": "npx zx-bulk-release --dry-run",
"lint": "yarn workspaces foreach -A --parallel --no-private --interlaced run lint",
"jest": "jest --runInBand --detectOpenHandles",
"test": "yarn lint && yarn jest",
"test:concurrent": "yarn workspaces run test && yarn coverage:merge",
"coverage:merge": "node scripts/js/coverage-merge.js",
"docs": "typedoc packages/**/src/main --ignoreCompilerErrors || exit 0",
"postupdate": "yarn && npm_config_yes=true npx yarn-audit-fix && yarn build && yarn test",
"release:debug": "DEBUG='semantic-release:*,msr:*' multi-semantic-release"
},
"devDependencies": {
"coveralls": "^3.1.1",
"find-git-root": "^1.0.4",
"jest": "^29.7.0",
"snazzy": "^9.0.0",
"zx-bulk-release": "^2.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/masker.git"
},
"keywords": [
"masker",
"masking",
"conseal",
"hide",
"sensitive data",
"credentials",
"secret"
],
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/qiwi/masker/issues"
},
"homepage": "https://github.com/qiwi/masker#readme",
"packageManager": "[email protected]"
}