-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.21 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
{
"name": "json-truncate",
"version": "2.0.0",
"description": "A way to truncate a json object.",
"main": "json-truncate.js",
"scripts": {
"lint": "standard",
"test": "mocha",
"doc": "jsdoc json-truncate.js -d docs",
"predoc": "rimraf docs"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mrsteele/json-truncate.git"
},
"keywords": [
"json",
"depth",
"truncate",
"shorten",
"limit",
"trim",
"prune",
"crop",
"stringify",
"parse",
"javascript",
"js"
],
"author": "Matt Steele <matt@omnionline.us> (http://omnionline.us)",
"contributors": [
"Viktor Hubert <rpgmorpheus@gmail.com> (https://hubertviktor.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mrsteele/json-truncate/issues"
},
"homepage": "https://github.com/mrsteele/json-truncate#readme",
"devDependencies": {
"chai": "^4.0.2",
"jsdoc": "^3.6.3",
"mocha": "^8.3.2",
"rimraf": "^3.0.0",
"standard": "^16.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"json-truncate.js"
]
}
}