forked from kolodny/immutability-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 863 Bytes
/
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
{
"name": "immutability-helper",
"version": "2.3.0",
"description": "mutate a copy of data without changing the original source",
"main": "index.js",
"scripts": {
"test-cov": "nyc npm test && nyc report --reporter=lcov",
"test-travis": "nyc npm test && nyc report --reporter=lcov",
"test": "mocha test.js"
},
"keywords": [
"immutability"
],
"author": "Moshe Kolodny",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.6",
"expect": "^1.14.0",
"mocha": "^2.4.5",
"nyc": "^5.6.0"
},
"dependencies": {
"invariant": "^2.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kolodny/immutability-helper.git"
},
"bugs": {
"url": "https://github.com/kolodny/immutability-helper/issues"
},
"homepage": "https://github.com/kolodny/immutability-helper#readme"
}