-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 911 Bytes
/
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
{
"name": "json-keys-sort",
"version": "2.1.0",
"description": "Sorting a json object based on keys either ascending or descending & even recursively",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"test:coverage": "nyc npm test",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/DawnImpulse/json-keys-sort.git"
},
"keywords": [
"json",
"sorting",
"json-sort",
"sort-json",
"key-sort-json",
"json-sort",
"object-sort",
"key-sorting",
"json-sorting",
"json-key-sorting"
],
"author": "DawnImpulse",
"license": "ISC",
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "3.0.9",
"mocha": "6.2.2",
"nyc": "15.0.0",
"rewire": "4.0.1"
},
"dependencies": {}
}