-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "hystrixjs_decorator",
"version": "1.0.1",
"main": "lib/hystrix_decorator.js",
"types": "lib/hystrix_decorator.d.ts",
"license": "MIT",
"author": {
"name": "Davi de Carvalho",
"email": "[email protected]",
"url": "https://github.com/DavideCarvalho"
},
"repository": {
"type": "git",
"url": "https://github.com/DavideCarvalho/hystrixjsDecorator"
},
"bugs": {
"url": "https://github.com/DavideCarvalho/hystrixjsDecorator/issues"
},
"devDependencies": {
"@types/hystrixjs": "^0.2.0",
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"source-map-support": "^0.5.6",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3"
},
"dependencies": {
"hystrixjs": "^0.2.0",
"rxjs": "^6.1.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"/lib/"
]
}
}