mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "json-text-sequence",
|
|
"version": "0.1.1",
|
|
"description": "Parse and generate RS-delimited JSON sequences according to draft-ietf-json-text-sequence",
|
|
"main": "./lib/index.js",
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf coverage lib doc man",
|
|
"lint": "coffeelint src test",
|
|
"coffee": "coffee -cm -o lib/ src",
|
|
"coverage": "istanbul cover nodeunit test/*.coffee",
|
|
"precoverage": "npm run coffee -s",
|
|
"test": "nodeunit test/*.coffee",
|
|
"pretest": "npm run coffee -s",
|
|
"prepublish": "npm run coffee -s",
|
|
"watch": "watch 'npm run coverage' src/",
|
|
"release": "npm version patch && git push --follow-tags && npm publish",
|
|
"ci": "npm run coverage -s && cat ./coverage/lcov.info | coveralls",
|
|
"live": "live-server --port=4001 --ignorePattern='(js|css|png)$' coverage/lcov-report",
|
|
"dev": "npm-run-all -p --silent watch live"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hildjj/json-text-sequence"
|
|
},
|
|
"keywords": [
|
|
"json",
|
|
"sequence",
|
|
"stream",
|
|
"RS"
|
|
],
|
|
"author": "Joe Hildebrand",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/hildjj/json-text-sequence/issues"
|
|
},
|
|
"homepage": "https://github.com/hildjj/json-text-sequence",
|
|
"devDependencies": {
|
|
"coffee-script": "latest",
|
|
"coffeelint": "latest",
|
|
"coveralls": "latest",
|
|
"istanbul": "latest",
|
|
"live-server": "latest",
|
|
"nodeunit": "latest",
|
|
"npm-run-all": "latest",
|
|
"source-map-support": "latest",
|
|
"watch": "latest"
|
|
},
|
|
"dependencies": {
|
|
"delimit-stream": "0.1.0"
|
|
}
|
|
}
|