-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "pwa",
"description": "A monorepo for all my `*-icon*` and `*-splash*` modules, etc. 'cause Snyk was being a pain with PRs",
"version": "0.0.1",
"author": {
"name": "Randy Tarampi",
"email": "[email protected]",
"url": "https://www.randytarampi.ca"
},
"bugs": "https://github.com/randytarampi/pwa/issues",
"dependencies": {
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.1.0",
"junit-merge": "^2.0.0",
"lerna": "^4.0.0",
"npm-check-updates": "^10.2.2",
"snyk": "^1.518.0",
"syncpack": "^5.6.10"
},
"engines": {
"node": ">=10",
"yarn": ">=1"
},
"keywords": [
"android",
"bin",
"cli",
"cordova",
"create",
"generator",
"icon",
"ios",
"phonegap",
"pwa",
"resize",
"screen",
"splash"
],
"license": "MIT",
"private": true,
"publishConfig": {
"access": "public"
},
"repository": "randytarampi/pwa.git",
"scripts": {
"bootstrap": "lerna bootstrap",
"cover": "yarn run cover:actual; yarn run cover:collect",
"cover:actual": "rm -rf .nyc_output/ coverage/ && lerna run cover --no-bail --concurrency $(node -p \"require(\\\"os\\\").cpus().length\")",
"cover:actual:collect:lcov": "mkdir -p .nyc_output/ coverage/ && lerna exec -- \"if [ -d \"./.nyc_output\" ]; then cp -r .nyc_output ../..; fi;\" && nyc report --reporter=lcov",
"cover:collect": "yarn run test:collect; yarn run cover:actual:collect:lcov",
"coveralls": "cat coverage/lcov.info | coveralls",
"prepare": "yarn run snyk-protect",
"pretest": "lerna run pretest --no-bail --concurrency $(node -p \"require(\\\"os\\\").cpus().length\")",
"snyk-protect": "snyk protect",
"test": "yarn run test:actual; yarn run test:collect",
"test:actual": "lerna run test --no-bail --concurrency $(node -p \"require(\\\"os\\\").cpus().length\")",
"test:actual:collect": "junit-merge $(ls packages/*/test-results.xml) --out ./test-results.xml",
"test:collect": "yarn run test:actual:collect"
},
"snyk": false,
"workspaces": [
"packages/*"
]
}