-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "immutable-data",
"version": "2.0.5",
"description": "Easily update nested objects and arrays in a declarative and immutable manner",
"main": "lib/index.js",
"entry": {
"index": "./src/index.js"
},
"scripts": {
"test": "atool-test",
"build": "atool-build -o ./lib --no-compress",
"coveralls": "cat ./coverage/report-lcov/lcov.info | coveralls",
"prepublish": "npm run build",
"dev": "dora -p 8001 --plugins webpack?publicPath=/demo"
},
"author": "https://github.com/zinkey",
"homepage": "https://github.com/flutejs/immutable-data",
"repository": {
"type": "git",
"url": "https://github.com/flutejs/immutable-data"
},
"bugs": {
"url": "https://github.com/flutejs/immutable-data/issues"
},
"licenses": "MIT",
"dependencies": {
"array-foreach": "^1.0.1",
"array-map": "0.0.0",
"is-array": "~1.0.1",
"is-plain-object": "^2.0.1",
"object-assign": "~4.1.0",
"object-keys": "^1.0.9",
"object-path-parse": "^0.1.0"
},
"devDependencies": {
"atool-build": "0.7.1",
"atool-test": "~0.4.x",
"coveralls": "~2.13.0",
"dora": "0.3.x",
"dora-plugin-webpack": "0.6.4"
},
"files": [
"lib"
],
"keywords": [
"immutable",
"persistent",
"data",
"datastructure",
"declarative",
"nested"
]
}