-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.16 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.16 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
{
"name": "sort-object",
"description": "Sort the keys in an object.",
"version": "3.0.3",
"homepage": "https://github.com/doowb/sort-object",
"author": "Brian Woodward (https://github.com/doowb)",
"maintainers": [
"Jon Schlinkert (https://github.com/jonschlinkert)"
],
"repository": "doowb/sort-object",
"bugs": {
"url": "https://github.com/doowb/sort-object/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"bytewise": "^1.1.0",
"get-value": "^2.0.2",
"is-extendable": "^0.1.1",
"sort-asc": "^0.2.0",
"sort-desc": "^0.2.0",
"union-value": "^2.0.1"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-eslint": "^1.1.1",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"mocha": "^3.5.3",
"should": "^13.1.3"
},
"keywords": [
"arr",
"array",
"function",
"js",
"key",
"keys",
"obj",
"object",
"order",
"re",
"re-order",
"sort",
"util",
"utils"
],
"verb": {
"related": {
"list": []
}
}
}