This repository was archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "immutable-update",
"version": "1.0.0",
"description": "A simple utility for efficiently applying updates to immutable objects",
"main": "dist/index.js",
"module": "dist-modules/",
"files": [
"dist/",
"dist-modules/"
],
"scripts": {
"coverage": "nyc report",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"dist:all": "npm run dist:modules && npm run dist:min",
"dist": "webpack --env dist",
"dist:min": "webpack --env dist:min",
"dist:modules": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
"lint": "eslint src",
"prepublish": "npm run dist:all",
"test": "NODE_ENV=test ava",
"test:coverage": "NODE_ENV=test:coverage nyc -s ava"
},
"repository": "TodayTix/immutable-update",
"keywords": [
"immutable",
"update",
"redux",
"state",
"reducer"
],
"author": "Jeremy Tice <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TodayTix/immutable-update/issues"
},
"homepage": "https://github.com/TodayTix/immutable-update#readme",
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"nyc": {
"exclude": "src/*.test.js",
"include": "src/*.js",
"instrument": false,
"sourceMap": false
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"coveralls": "^2.13.1",
"eslint": "^4.3.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"nyc": "^11.1.0",
"rimraf": "^2.6.1",
"tap-xunit": "^1.7.0",
"webpack": "^3.4.1"
},
"dependencies": {
"lodash.assignwith": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isplainobject": "^4.0.6",
"lodash.mergewith": "^4.6.0",
"lodash.set": "^4.3.2"
}
}