forked from otakustay/react-diff-view
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.59 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.59 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "react-diff-view",
"version": "2.4.8",
"description": "A git diff component to consume the git unified diff output.",
"main": "cjs/index.js",
"module": "es/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.com"
},
"sideEffects": [
"*.css"
],
"scripts": {
"test": "jest --config ./jest.config.js",
"start": "webpack-dev-server --config=site/webpack.config.js",
"clean": "rm -rf cjs es style",
"build": "sh scripts/build.sh",
"build-pages": "rm -rf dist && webpack --config=site/webpack.config.js",
"prepublishOnly": "npm run build",
"lint": "eslint src site"
},
"author": "otakustay",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@ecomfe/eslint-config": "^4.0.1",
"@types/react-test-renderer": "^16.9.3",
"antd": "^3.24.2",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-plugin-import": "^1.13.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-react-require": "^3.1.3",
"classnames": "^2.2.6",
"core-js": "^3.6.5",
"css-loader": "^4.2.2",
"cssnano": "^4.1.10",
"diff-match-patch": "^1.0.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.8.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"gitdiff-parser": "^0.2.2",
"html-webpack-plugin": "^4.4.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"less": "^3.12.2",
"less-loader": "^7.0.0",
"lodash": "^4.17.20",
"nanoid": "^3.1.25",
"postcss": "^7.0.32",
"postcss-cli": "^7.1.2",
"postcss-custom-properties": "^9.1.1",
"prism-color-variables": "^1.0.0",
"raw-loader": "^4.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-infinite-scroller": "^1.2.4",
"react-markdown": "^4.3.1",
"react-render-if-visible": "^1.0.3",
"react-test-renderer": "^16.13.1",
"react-timeago": "^4.1.9",
"recompose": "^0.30.0",
"refractor": "^2.10.1",
"rollup": "^1.25.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.2",
"sha1": "^1.1.1",
"shallow-equal": "^1.2.1",
"style-loader": "^1.2.1",
"styled-components": "^5.3.1",
"unidiff": "^1.0.2",
"warning": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^3.0.2"
},
"peerDependencies": {
"prop-types": ">=15.6",
"react": ">=16.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otakustay/react-diff-view.git"
},
"keywords": [
"git",
"github",
"diff",
"git-diff",
"react",
"component"
],
"bugs": {
"url": "https://github.com/otakustay/react-diff-view/issues"
},
"homepage": "https://github.com/otakustay/react-diff-view#readme",
"files": [
"es",
"cjs",
"style"
]
}