-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-through",
"version": "1.1.4",
"description": "Declarative data mapping through react tree",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/oklas/react-through.git"
},
"keywords": [
"react",
"through",
"declarative",
"props",
"data",
"transfer",
"mapping",
"exchange"
],
"author": "Serguei Okladnikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oklas/react-through/issues"
},
"homepage": "https://github.com/oklas/react-through",
"peerDependencies": {
"react": ">=16.3.0 || ^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"jest": "^26.1.0",
"raf": "^3.4.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-test-renderer": "^16.8.2"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"testRegex": "(/test/.*\\.(test|spec))\\.(js|jsx)$",
"coverageDirectory": "coverage",
"coverageReporters": [
"text-summary",
"lcov",
"html"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.spec.js",
"!src/**/*.index.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.jsx$": "babel-jest"
},
"testURL": "http://localhost",
"setupFiles": [
"raf/polyfill"
]
},
"scripts": {
"build": "babel -d lib/ src",
"prepublish": "npm run build",
"test": "jest --coverage",
"test-debug": "jest --bail --verbose"
}
}