nextbus
Version:
Node.js interface to the NextBus XML Feed
62 lines (61 loc) • 1.78 kB
JSON
{
"name": "nextbus",
"version": "0.0.7",
"description": "Node.js interface to the NextBus XML Feed",
"main": "lib/index.js",
"scripts": {
"babel": "babel src --out-dir lib",
"build": "del ./lib && npm run babel",
"flow": "flow",
"flow:gen-flow-files": "find ./src -iname '*.js' | while read file; do flow gen-flow-files $file --out-dir lib; done",
"flow-typed": "flow-typed",
"jest": "jest",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "npm run lint && npm run flow && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elliottsj/nextbus-js.git"
},
"keywords": [
"nextbus"
],
"author": "Spencer Elliott <me@elliottsj.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elliottsj/nextbus-js/issues"
},
"homepage": "https://github.com/elliottsj/nextbus-js#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2016": "^6.11.3",
"babel-preset-es2017": "^6.16.0",
"del-cli": "^0.2.1",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.37.4"
},
"dependencies": {
"babel-runtime": "^6.20.0",
"flow-typed": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^18.0.0",
"pify": "^2.3.0",
"xml2js": "^0.4.17"
},
"jest": {
"testPathDirs": [
"<rootDir>/src"
]
}
}