-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
60
61
62
63
64
65
{
"name": "react-lazy-import",
"version": "0.2.1",
"description": "A simple higher order component for easy code splitting.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "rimraf lib && tsc",
"prepublish": "rimraf lib && tsc"
},
"author": "Martynas Kadiša <[email protected]>",
"homepage": "https://github.com/martynaskadisa/react-lazy-import#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/martynaskadisa/react-lazy-import.git"
},
"bugs": {
"url": "https://github.com/martynaskadisa/react-lazy-import/issues"
},
"license": "MIT",
"keywords": [
"react",
"lazy-loading",
"code-splitting",
"typescript",
"dynamic-import"
],
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/jest": "^19.2.4",
"@types/react": "^15.0.28",
"@types/webpack": "^2.2.15",
"awesome-typescript-loader": "^3.1.3",
"jest": "^20.0.4",
"react": "^15.6.1",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.6",
"ts-node": "^3.0.6",
"tslint": "^5.4.3",
"tslint-react": "^3.0.0",
"typescript": "^2.3.4",
"webpack": "^2.6.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"collectCoverage": true
}
}