-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 729 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 729 Bytes
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
{
"name": "react-diff",
"version": "0.0.7",
"description": "Highlight differences between inputs",
"main": "dist/react-diff.js",
"scripts": {
"build": "./node_modules/.bin/babel lib/react-diff.js > dist/react-diff.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cezary/react-diff.git"
},
"keywords": [
"react",
"diff"
],
"author": "Cezary Wojtkowski <cezary@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cezary/react-diff/issues"
},
"homepage": "https://github.com/cezary/react-diff",
"peerDependencies": {
"react": ">=0.12.0"
},
"dependencies": {
"diff": "^1.2.0"
},
"devDependencies": {
"babel": "^5.1.10"
}
}