This repository was archived by the owner on Mar 19, 2026. It is now read-only.
forked from mrsteele/json-truncate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.87 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.87 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
{
"name": "json-truncate",
"version": "0.0.0-semantically-released",
"description": "A way to truncate a json object.",
"main": "src/json-truncate.js",
"scripts": {
"precommit": "npm run lint && npm run coverage",
"commit": "git-cz",
"lint": "standard",
"coverage": "nyc npm t && npm run coverage-report",
"coverage-report": "nyc report --reporter=lcov",
"test": "npm run build && _mocha --compilers js:babel-register",
"prebuild": "rimraf dist",
"build": "babel --copy-files --out-dir dist src",
"travis": "npm run precommit",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"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)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrsteele/json-truncate/issues"
},
"homepage": "https://github.com/mrsteele/json-truncate#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^2.0.0",
"mocha": "^3.3.0",
"nyc": "^10.3.0",
"rimraf": "^2.5.2",
"semantic-release": "^6.3.2",
"standard": "^10.0.2"
},
"files": [
"dist",
"src",
"README.md"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"parser": "babel-eslint",
"ignore": "/dist/"
},
"babel": {
"presets": [
"es2015"
]
},
"nyc": {
"include": [
"src/**/*.js"
]
}
}