-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 872 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
{
"name": "deep-diff-mapper",
"version": "1.1.1",
"description": "Run a deep difference comparison on two objects",
"main": "dist/deepDiffMapper.js",
"types": "dist/deepDiffMapper.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "nyc mocha && nyc report --reporter=text --reporter=html",
"test:watch": "mocha -w",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [],
"author": "Matt Clyde",
"license": "ISC",
"bugs": {
"url": "https://github.com/mjclyde/deep-diff-mapper/issues"
},
"homepage": "https://github.com/mjclyde/deep-diff-mapper#readme",
"devDependencies": {
"@types/node": "^10.12.23",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"lodash": "^4.17.11",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"typescript": "^2.9.2"
},
"dependencies": {}
}