-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1007 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
34
35
36
37
38
39
{
"scripts": {
"start": "npx ts-node src/index.ts",
"tsc": "npx tsc",
"build": "babel src --out-dir dist --extensions .ts"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^28.1.3",
"jest": "^28.1.2",
"typescript": "^4.1.2"
},
"name": "are-objects-equal",
"description": "This module allows you to compare typed object values, such as: objects, arrays and nulls.",
"version": "2.0.0",
"main": "dist/index.js",
"dependencies": {
"np": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjsdevs/object-comparator.git"
},
"keywords": [
"typescript",
"compare",
"objects",
"arrays"
],
"author": "kbmelo",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjsdevs/object-comparator/issues"
},
"homepage": "https://github.com/mjsdevs/object-comparator#readme"
}