forked from mariocasciaro/object-path-immutable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.51 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.51 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
{
"name": "object-path-immutable",
"version": "3.1.0",
"description": "Modify deep object properties without modifying the original object (immutability). Works great with React and Redux.",
"author": "Mario Casciaro <m@mario.fyi>",
"license": "MIT",
"homepage": "https://github.com/mariocasciaro/object-path-immutable",
"repository": {
"type": "git",
"url": "git://github.com/mariocasciaro/object-path-immutable.git"
},
"types": "./object-path-immutable.d.ts",
"engines": {
"node": ">=0.10.0"
},
"main": "index.js",
"scripts": {
"build": "rollup -c",
"pretest": "standard",
"test": "npm run build && mocha test.js",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"prepublish": "npm run coverage",
"standard-fix": "standard --fix"
},
"dependencies": {
"is-plain-object": "3.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"nyc": "^14.1.1",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"rollup": "^1.16.2",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.1.0",
"standard": "^12.0.1"
},
"keywords": [
"deep",
"path",
"access",
"get",
"property",
"dot",
"prop",
"object",
"obj",
"notation",
"segment",
"value",
"nested",
"key",
"immutable",
"immutability",
"react",
"redux",
"state"
],
"standard": {
"ignore": [
"dist"
]
}
}