forked from brainee/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 866 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
{
"scripts": {
"compile": "lerna run prepublishOnly",
"install": "lerna bootstrap --registry=https://registry.npm.taobao.org",
"clean": "lerna clean"
},
"packages": [
"packages/*"
],
"dependencies": {
"jest": "^24.8.0",
"lerna": "^3.14.1",
"typescript": "^3.5.2"
},
"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))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"name": "moon",
"devDependencies": {
"@types/jest": "^24.0.21",
"ts-jest": "^24.1.0"
}
}