-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "diff-immutability-helper",
"version": "1.1.0",
"description": "Creates a diff between 2 javascript objects / variables, in a format that is compatible with immutability-helper",
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"repository": "git@github.com:yeojz/diff-immutability-helper.git",
"author": "Gerald Yeo <contact@fusedthought.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"clean": "rimraf lib coverage",
"coverage": "jest --coverage",
"codecov": "codecov",
"lint": "eslint \"src/**/**?(.spec|).js\"",
"lint:format": "prettier --write \"{src,scripts}/**/**.js\"",
"test": "jest"
},
"keywords": [
"diff",
"json",
"immutability",
"immutable",
"changeset",
"object"
],
"jest": {
"coverageDirectory": "./coverage/"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.4",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"immutability-helper": "^2.7.1",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"rollup": "^0.65.0"
},
"dependencies": {
"adiff": "^0.2.13",
"lodash": "^4.17.10"
}
}