12345678910111213141516171819202122232425262728293031 |
- {
- "name": "streaming-json-stringify",
- "description": "Streaming JSON.stringify()",
- "version": "3.1.0",
- "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
- "repository": "stream-utils/streaming-json-stringify",
- "license": "MIT",
- "devDependencies": {
- "cat-stream": "*",
- "istanbul": "0",
- "mocha": "2",
- "sinon": "^1.17.2"
- },
- "scripts": {
- "test": "mocha --reporter spec",
- "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
- "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
- },
- "keywords": [
- "stream",
- "json",
- "stringify"
- ],
- "files": [
- "index.js"
- ],
- "dependencies": {
- "json-stringify-safe": "5",
- "readable-stream": "2"
- }
- }
|