-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 911 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
34
{
"name": "@ln613/ipath",
"version": "0.2.1",
"description": "Ensure immutability by updating javascript objects using a path similar to CSS/jQuery selector, great for react/redux applications where immutability is required, especially when working with deeply nested objects.",
"keywords": [
"javascript",
"immutable",
"ramda"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ln613/ipath.git"
},
"main": "dist",
"scripts": {
"start": "watch \"npm run build\" src",
"build": "babel src --out-dir dist",
"test": "jest"
},
"author": "Nan Li",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^21.2.0",
"jest": "^21.2.1",
"watch": "^1.0.2"
},
"dependencies": {
"ramda": "^0.25.0"
}
}