-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
103 lines (103 loc) · 2.76 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-github-fork-ribbon",
"description": "Pure inline style github fork ribbon on React component",
"version": "0.7.1",
"keywords": [
"fork",
"GitHub",
"ribbon",
"react",
"react-component"
],
"contributor": [
{
"name": "Lee",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jessy1092/react-github-fork-ribbon"
},
"bugs": {
"url": "https://github.com/jessy1092/react-github-fork-ribbon/issues"
},
"homepage": "http://jessy1092.github.io/react-github-fork-ribbon",
"license": "MIT",
"scripts": {
"start": "gulp dev",
"prepublish": "gulp transpile",
"storybook": "start-storybook -p 8000 -c storybook",
"test": "jest --coverage",
"release": "standard-version"
},
"engines": {
"node": ">=0.10.x"
},
"main": "component/index.js",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@storybook/react": "^3.2.12",
"babel": "^6.5.2",
"babel-core": "^6.24.1",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babelify": "^7.2.0",
"browserify": "^14.3.0",
"browserify-global-shim": "^1.0.3",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.1.2",
"gulp-util": "^3.0.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "^16.0.0",
"standard-version": "^4.4.0",
"storybook-addon-specifications": "^2.1.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {},
"jest": {
"setupFiles": [
"<rootDir>/storybook/__conf__/mockConfig.js"
],
"testMatch": [
"**/storybook/**/*.stories.js",
"**/src/**/*.spec.js"
],
"automock": false,
"globals": {
"__TESTS__": true
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react/",
"<rootDir>/node_modules/react-dom/",
"<rootDir>/node_modules/enzyme/",
"<rootDir>/node_modules/react-addons-test-utils/"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/storybook/__mocks__/file.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"coveragePathIgnorePatterns": [
"<rootDir>/storybook/",
"<rootDir>/node_modules/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}