This repository was archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.11 KB
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
{
"name": "root",
"private": true,
"license": "MIT",
"scripts": {
"setup": "npm run bootstrap && npm run link",
"build": "npx lerna run build",
"test": "npx jest packages/*/test --verbose --coverage --collectCoverageFrom=packages/*/src/**/*",
"test:oh": "npx jest packages/*/test --verbose --coverage --collectCoverageFrom=packages/*/src/**/* --runInBand --detectOpenHandles",
"test:package": "npx jest packages/$npm_config_package/test --verbose --coverage --collectCoverageFrom=packages/*/src/**/*",
"test:watch": "npx jest packages/*/test --watchAll",
"test:coverage": "npx jest packages/*/test --verbose --coverage --collectCoverageFrom=packages/*/src/**/*",
"test:ci": "npx jest packages/*/test --verbose --coverage --collectCoverageFrom=packages/*/src/**/* --coverageDirectory reports --maxWorkers=2",
"lint": "npx eslint packages/*/src/**/* packages/*/test/**/* --ext .json,.js,.ts",
"lint:fix": "npx eslint packages/*/src/**/* packages/*/test/**/* --ext .json,.js,.ts --fix",
"lint:ci": "npx eslint packages/*/src/**/* packages/*/test/**/* --ext .json,.js,.ts --format junit --output-file ./reports/eslint.xml",
"link": "npx lerna link",
"bootstrap": "lerna bootstrap",
"clean": "rm -r packages/*/lib packages/*/tsconfig.tsbuildinfo"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@types/deep-freeze": "^0.1.2",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"debug": "^4.1.1",
"deep-freeze": "0.0.1",
"eslint": "^7.3.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.15.0",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"jest-junit": "^11.0.1",
"lerna": "^3.22.1",
"pify": "^5.0.0",
"sqlite3": "^5.0.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}