forked from apache/dubbo-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest --watch -u"
},
"devDependencies": {
"lerna": "^2.5.1",
"@types/debug": "^0.0.30",
"@types/jest": "^21.1.6",
"@types/node": "^8.0.51",
"@types/node-zookeeper-client": "^0.2.6",
"@types/js-to-java": "2.4.0",
"@types/koa-compose": "3.2.2",
"@types/dateformat": "1.0.1",
"@types/ip": "0.0.30",
"@types/uuid": "3.4.3",
"jest": "^21.2.1",
"ts-jest": "^21.2.2",
"typescript": "2.9.2",
"uuid": "3.2.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/packages/dubbo/src/__tests__/providers",
"<rootDir>/examples",
"<rootDir>/java"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
}
}