-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.86 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
61
62
63
{
"name": "deep-equal-in-any-order",
"version": "2.0.6",
"description": "chai plugin to match objects and arrays deep equality with arrays (including nested ones) being in any order",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build && babel src --out-dir build --ignore tests/",
"coverage": "nyc --check-coverage=true npm run test",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"test": "mocha -r babel-register --recursive src/tests --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oprogramador/deep-equal-in-any-order.git"
},
"keywords": [
"chai",
"plugin",
"chai-plugin",
"arrays",
"objects",
"any",
"order",
"deep",
"equal"
],
"author": "oprogramador",
"license": "MIT",
"bugs": {
"url": "https://github.com/oprogramador/deep-equal-in-any-order/issues"
},
"homepage": "https://github.com/oprogramador/deep-equal-in-any-order#readme",
"devDependencies": {
"@babel/core": "^7.13.14",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-roughly-v2": "^2.0.12",
"chai-subset": "^1.6.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.23.0",
"eslint-config-airbnb-improved": "^5.0.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"semantic-release": "19",
"sinon": "^10.0.0",
"sinon-as-promised": "^4.0.3",
"sinon-chai": "^3.6.0"
},
"dependencies": {
"lodash.mapvalues": "^4.6.0",
"sort-any": "^2.0.0"
}
}