-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "dedupe-objects",
"version": "1.0.1",
"description": "Given two objects, reuse common objects between the both objects",
"main": "dist/index.js",
"scripts": {
"benchmark": "babel-node benchmark.js",
"test": "nyc ava && semistandard | snazzy",
"coverage": "npm test && nyc report --reporter=lcov && open coverage/lcov-report/index.html",
"prepublish": "mkdir -p dist && babel lib --out-dir dist",
"posttest": "readme package.json --travis > readme.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/dedupe-objects.git"
},
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/dedupe-objects/issues"
},
"homepage": "https://github.com/micnews/dedupe-objects#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"nyc": "^10.3.2",
"package-json-to-readme": "^1.5.0",
"semistandard": "^9.0.0",
"snazzy": "^5.0.0"
},
"dependencies": {
"dift": "^0.1.12",
"immutable-array-methods": "^1.0.0",
"immutable-object-methods": "^1.2.1"
}
}