-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "diffler",
"version": "2.0.4",
"description": "A recursive JSON comparison script for humans",
"main": "./dist/index.js",
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"prettier": "^2.1.2",
"uglify-js": "^3.11.2"
},
"scripts": {
"test": "echo \"Running Mocha Tests\" && mocha ./tests/index.js",
"lint": "eslint .",
"build": "echo \"Running Build\" && uglifyjs ./src/index.js --comments --compress --mangle -o ./dist/index.js",
"bench": "echo \"Running Performance Benchmark\" && node ./tests/performance.js"
},
"repository": {
"type": "git",
"url": "https://github.com/omgaz/diffler.git"
},
"keywords": [
"recursive",
"difference",
"comparison",
"compare",
"diff",
"js-diff",
"deep-diff"
],
"author": "Gary Chisholm",
"license": "MIT",
"bugs": {
"url": "https://github.com/omgaz/diffler/issues"
},
"homepage": "https://github.com/omgaz/diffler"
}