-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.44 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
{
"workspaces": [
"packages/*"
],
"private": true,
"devDependencies": {
"@fesk/module-release": "0.0.3",
"babel-eslint": "10.0.1",
"eslint": "5.16.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-flow": "2.29.1",
"eslint-plugin-flowtype": "3.9.1",
"eslint-plugin-prettier": "3.1.0",
"flow-bin": "0.98.1",
"husky": "1.3.1",
"lerna": "3.14.1",
"jest": "23.6.0",
"lint-staged": "8.1.7",
"npm-run-all": "4.1.5",
"coveralls": "3.0.3",
"istanbul": "0.4.5",
"prettier": "1.17.1"
},
"devEngines": {
"node": "8.12.0"
},
"scripts": {
"start": "lerna run start --stream --parallel --concurrency 100",
"build": "NODE_ENV=production lerna run build && lerna link",
"build-all": "lerna run build",
"precommit": "lint-staged",
"release": "fesk-release",
"merge": "fesk-merge",
"link": "lerna link",
"postinstall": "lerna link",
"test": "jest --coverage",
"test:coverage": "jest --verbose --coverage",
"test:watch": "jest --coverage --watch"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,json,scss,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
},
"modulePathIgnorePatterns": [
"packages/iiif-redux/__tests__/fixtures",
"packages/iiif-redux/__tests__/api/3\\.x/[A-Za-z\\-]+/fixtures"
]
}
}