UNPKG

hsl-city-bikes

Version:

NPM package for fetching data about city bike station in Helsinki.

54 lines (53 loc) 1.66 kB
{ "name": "hsl-city-bikes", "version": "1.1.1", "description": "NPM package for fetching data about city bike station in Helsinki.", "main": "dist/index.js", "scripts": { "build": "tsc", "dev": "nodemon src/index.ts", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "lint-fix": "tslint -p tsconfig.json --fix", "postversion": "git push && git push --tags", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "start": "node dist/index.js", "test": "jest --config jestconfig.json", "version": "npm run format && git add -A src" }, "repository": { "type": "git", "url": "git@github.com:filiptypjeu/npm-hsl-city-bikes.git" }, "homepage": "https://github.com/filiptypjeu/npm-hsl-city-bikes", "author": "Filip Stenbacka", "license": "ISC", "types": "dist/index.d.ts", "dependencies": { "graphql-request": "^3.4.0", "node-fetch": "^2.6.1" }, "devDependencies": { "@types/jest": "^26.0.23", "@types/node-fetch": "^2.5.10", "graphql": "^15.5.0", "jest": "^27.0.3", "prettier": "^2.3.0", "ts-jest": "^27.0.1", "ts-node": "^10.0.0", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^3.9.9" }, "files": [ "dist/**/*" ], "keywords": [ "hsl", "helsinki", "city bikes", "bikes" ] }