-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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": "are-objects-equals",
"version": "1.0.1",
"description": "A tool to compare objects easyly",
"main": "lib/are-objects-equals.js",
"files": [
"lib/"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "export TEST_ENV=true; mocha --exit --recursive tests/",
"coverage": "nyc npm test",
"test-ci": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/",
"lint": "eslint lib/ tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gastonpereyra/are-objects-equals.git"
},
"keywords": [],
"author": "Gastón Pereyra",
"license": "MIT",
"bugs": {
"url": "https://github.com/gastonpereyra/are-objects-equals/issues"
},
"homepage": "https://github.com/gastonpereyra/are-objects-equals#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.1.1",
"nyc": "^15.1.0"
},
"dependencies": {
"objects-normalizer": "^1.0.4",
"press-f": "^1.1.1"
}
}