forked from intelie/immutable-js-diff
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 695 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 695 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
33
{
"name": "immutablediff",
"version": "0.4.4",
"description": "Create RFC 6902 style patches between Immutable.JS data structures",
"main": "src/diff.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "gulp test"
},
"keywords": [
"immutable.js",
"diff",
"jsondiff"
],
"author": "Intelie",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/intelie/immutable-js-diff.git"
},
"devDependencies": {
"gulp": "^3.8.9",
"gulp-mocha": "^1.1.1",
"gulp-util": "^3.0.1",
"jscheck": "^0.2.0",
"jsondiff": "brenoferreira/json-diff"
},
"dependencies": {
"immutable": "^4.0.0-rc.12"
}
}