-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.98 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"_from": "shallow-equal@^1.2.1",
"_id": "shallow-equal@1.2.1",
"_inBundle": false,
"_integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==",
"_location": "/shallow-equal",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "shallow-equal@^1.2.1",
"name": "shallow-equal",
"escapedName": "shallow-equal",
"rawSpec": "^1.2.1",
"saveSpec": null,
"fetchSpec": "^1.2.1"
},
"_requiredBy": [
"/react-responsive"
],
"_resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz",
"_shasum": "4c16abfa56043aa20d050324efa68940b0da79da",
"_spec": "shallow-equal@^1.2.1",
"_where": "C:\\Users\\Agustin\\Desktop\\Certified Tech Developer\\4to Bimestre\\Proyecto Integrador - Gitlab\\grupo-05\\node_modules\\react-responsive",
"author": {
"name": "Misha Moroshko",
"email": "michael.moroshko@gmail.com"
},
"bugs": {
"url": "https://github.com/moroshko/shallow-equal/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Minimalistic shallow equality check for arrays/objects",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-plugin-mocha": "^6.2.2",
"esm": "^3.2.25",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rollup": "^1.27.8"
},
"files": [
"dist",
"arrays",
"objects"
],
"homepage": "https://github.com/moroshko/shallow-equal#readme",
"keywords": [
"shallow",
"equality",
"compare",
"comparison",
"shallowequal",
"shallow-equal",
"shallowequals",
"shallow-equals",
"isshallowequal",
"is-shallow-equal",
"equal",
"equals",
"isequal",
"is-equal",
"object",
"array",
"check",
"test"
],
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"name": "shallow-equal",
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/*.js"
],
"exclude": [
"src/*.test.js"
],
"reporter": [
"lcov",
"text-summary"
],
"check-coverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/moroshko/shallow-equal.git"
},
"scripts": {
"build": "npm run build:objects && npm run build:arrays && rm -rf dist && npm run build:cjs && npm run build:esm",
"build:arrays": "rm -rf arrays && rollup -f cjs -i src/arrays.js -o arrays/index.js",
"build:cjs": "rollup -f cjs -i src/index.js -o dist/index.cjs.js",
"build:esm": "rollup -f esm -i src/index.js -o dist/index.esm.js",
"build:objects": "rm -rf objects && rollup -f cjs -i src/objects.js -o objects/index.js",
"lint": "eslint src",
"postversion": "git push && git push --tags",
"prebuild": "npm run lint && npm test",
"prepare": "npm run build",
"preversion": "npm run prebuild",
"test": "nyc --require esm mocha 'src/*.test.js'"
},
"version": "1.2.1"
}