package.json
2.81 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
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
{
"_from": "shallowequal@^1.1.0",
"_id": "shallowequal@1.1.0",
"_inBundle": false,
"_integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==",
"_location": "/shallowequal",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "shallowequal@^1.1.0",
"name": "shallowequal",
"escapedName": "shallowequal",
"rawSpec": "^1.1.0",
"saveSpec": null,
"fetchSpec": "^1.1.0"
},
"_requiredBy": [
"/mini-store",
"/rc-collapse",
"/rc-menu",
"/rc-picker",
"/rc-slider",
"/rc-table",
"/rc-util"
],
"_resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
"_shasum": "188d521de95b9087404fd4dcb68b13df0ae4e7f8",
"_spec": "shallowequal@^1.1.0",
"_where": "C:\\Users\\kkwan_000\\Desktop\\git\\2017110269\\minsung\\node_modules\\rc-util",
"author": {
"name": "Alberto Leal",
"email": "mailforalberto@gmail.com",
"url": "github.com/dashed"
},
"bugs": {
"url": "https://github.com/dashed/shallowequal/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Like lodash isEqualWith but for shallow equal.",
"devDependencies": {
"babel-eslint": "^8.0.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.24.1",
"chai": "^4.0.0",
"eslint": "^4.7.1",
"flow-bin": "^0.75.0",
"flow-remove-types": "^1.2.3",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mocha": "^5.0.0",
"prettier": "^1.9.2"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"extends": [
"eslint:recommended"
]
},
"files": [
"index.js",
"index.js.flow",
"index.original.js"
],
"homepage": "https://github.com/dashed/shallowequal#readme",
"keywords": [
"shallowequal",
"shallow",
"equal",
"isequal",
"compare",
"isequalwith"
],
"license": "MIT",
"lint-staged": {
"*.{js,json,css,js.flow}": [
"prettier --write",
"git add"
]
},
"main": "index.js",
"name": "shallowequal",
"repository": {
"type": "git",
"url": "git+https://github.com/dashed/shallowequal.git"
},
"scripts": {
"build": "npm run build:strip-flow && npm run build:gen-flow",
"build:gen-flow": "flow gen-flow-files index.original.js > index.js.flow",
"build:strip-flow": "flow-remove-types --pretty index.original.js > index.js",
"lint": "eslint index.js test",
"precommit": "lint-staged",
"prepublish": "npm run build && npm run pretty && npm run lint && npm run test",
"pretty": "prettier --write --tab-width 2 'test/**/*.js' '*.{js,js.flow}'",
"test": "mocha --require babel-register",
"travis": "npm run lint && npm run test"
},
"version": "1.1.0"
}