-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.22 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
{
"private": true,
"scripts": {
"build": "lerna run build",
"verify": "yarn run lint && yarn run test:cov",
"verify:bail": "eslint packages && yarn run test:cov",
"clean": "rm -rf coverage *.log packages/*/dist && lerna clean --yes",
"lint": "eslint --fix packages",
"prepublishOnly": "yarn run build && yarn run verify:bail",
"postinstall": "lerna run build && lerna bootstrap --concurrency=1",
"ci": "yarn run verify:bail",
"test:cov": "yarn run test --coverage",
"test:watch": "yarn run test --watch",
"test": "jest --runInBand"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.3.0",
"lerna": "^3.22.1",
"prettier": "^2.0.5"
},
"jest": {
"collectCoverageFrom": [
"packages/**/*.js"
],
"coverageReporters": [
"text",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
".json",
"/dist/"
],
"testEnvironment": "node"
}
}