-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 846 Bytes
/
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
{
"private": true,
"devDependencies": {
"@types/jest": "^22.1.1",
"@types/lodash": "^4.14.100",
"@types/node": "^9.4.6",
"in-publish": "^2.0.0",
"jest": "^22.1.4",
"lerna": "^2.9.0",
"lodash": "^4.17.4",
"ts-jest": "^22.0.2",
"typescript": "^2.8.3"
},
"engines": {
"node": "8"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globalSetup": "<rootDir>/scripts/jest-run-make.js",
"testRegex": "packages/kitimat.*/src/__test__/.*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"scripts": {
"test": "jest",
"test:integration": "cd packages/integration-tests; yarn test"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"trailingComma": "all"
},
"workspaces": [
"packages/*"
]
}