rijksmuseum-typescript-api
Version:
Rijksmuseum API Wrapper made with Typescript and RxJS
53 lines (52 loc) • 1.42 kB
JSON
{
"name": "rijksmuseum-typescript-api",
"version": "0.1.0",
"description": "Rijksmuseum API Wrapper made with Typescript and RxJS",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json --verbose false",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint --fix -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"sonar": "sonar-scanner"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BobvD/rijksmuseum-typescript-api.git"
},
"keywords": [
"rijksmuseum",
"wrapper",
"api",
"typescript",
"rxjs"
],
"author": "Bob van Donselaar",
"license": "MIT",
"bugs": {
"url": "https://github.com/BobvD/rijksmuseum-typescript-api/issues"
},
"homepage": "https://github.com/BobvD/rijksmuseum-typescript-api#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"sonar-scanner": "^3.1.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"rxjs": "^6.5.2"
}
}