forked from bormind/immutable-setter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 KB
/
package.json
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
{
"name": "immutable-setter",
"version": "1.1.2",
"description": "'Deep properties setter and getter for immutable objects'",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "babel --out-dir lib --ignore *.test.js src",
"test": "npm run build && mocha --compilers js:babel-core/register tests/index.test.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bormind/immutable-setter.git"
},
"keywords": [
"immutable",
"deep",
"setter",
"getter",
"setIn",
"getIn"
],
"author": "Boris Schneiderman <[email protected]> (http://bormind.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bormind/immutable-setter/issues"
},
"homepage": "https://github.com/bormind/immutable-setter#readme",
"devDependencies": {
"babel-cli": "6.7.7",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-0": "6.5.0",
"chai": "3.5.0",
"mocha": "2.4.5",
"object-assign-shim": "1.0.0",
"rimraf": "2.5.2"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"dependencies": {
"object-assign-shim": "1.0.0"
}
}