-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.1 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"lint": "eslint .",
"test:coverage": "jest --coverage --maxWorkers=2 && codecov",
"test:watch": "jest --watch",
"test": "jest --maxWorkers=2",
"website:install": "npm install --prefix website",
"website:start": "npm start --prefix website",
"website:publish": "./scripts/website-publish.sh",
"build": "npm run bootstrap && npm run lint"
},
"devDependencies": {
"codecov": "^2.3.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.2",
"jest": "^21.0.2",
"jest-teamcity-reporter": "^0.7.0",
"lerna": "^2.5.1"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test_setup_file.js",
"testResultsProcessor": "jest-teamcity-reporter",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"/packages/some-project/"
],
"testMatch": [
"**/*.spec.js"
],
"watchPathIgnorePatterns": [
"node_modules"
]
}
}