-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "js-identical",
"version": "1.2.0",
"description": "Javascript library to check if 1st json is equal by the 2nd json",
"main": "build/index.js",
"scripts": {
"test": "mocha -r ts-node/register src/**/**.test.ts",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"build": "npm run lint && ./build.sh"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/slaveofcode/js-identical.git"
},
"keywords": [
"json",
"compare",
"match",
"diff",
"identical",
"equal",
"deep-equal",
"deep"
],
"author": "Aditya Kresna Permana",
"license": "MIT",
"bugs": {
"url": "https://github.com/slaveofcode/js-identical/issues"
},
"homepage": "https://github.com/slaveofcode/js-identical#readme",
"devDependencies": {
"@ef-carbon/tspm": "^2.2.5",
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"chai": "^4.2.0",
"husky": "^4.2.3",
"mocha": "^7.0.1",
"ts-node": "^8.6.2",
"ts-node-register": "^1.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"files": [
"build/**/*"
],
"dependencies": {
"@types/murmurhash": "0.0.1",
"dequal": "^1.0.0",
"is-subset": "^0.1.1",
"murmurhash": "0.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}