-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.28 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
{
"name": "react-fast-children",
"version": "1.0.4",
"description": "Faster rendering of React components with many children",
"main": "build/index.js",
"types": "build/index.d.ts",
"sideEffects": false,
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm test",
"prepare": "npm run build",
"test": "jest"
},
"author": "jahooma",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jahooma/react-fast-children.git"
},
"bugs": {
"url": "https://github.com/jahooma/react-fast-children/issues"
},
"homepage": "https://throne.live/ReactFastChildren",
"keywords": [
"react",
"fast",
"children"
],
"peerDependencies": {
"react": ">= 16.8.0"
},
"dependencies": {
"diff": "^4.0.1"
},
"devDependencies": {
"@types/diff": "^4.0.2",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.141",
"@types/react": "^16.9.5",
"jest": "^24.8.0",
"lodash": "^4.17.15",
"react": "16.10.1",
"ts-jest": "^24.0.2",
"typescript": "^3.6.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src.*/__tests__/.*\\.(ts|tsx|js)$"
}
}