UNPKG

@siren-js/server

Version:
59 lines (58 loc) 1.56 kB
{ "name": "@siren-js/server", "version": "0.1.0", "description": "Siren API server library", "files": [ "/dist" ], "main": "dist/index.js", "scripts": { "build": "npm run build:lib", "build:docs": "typedoc ./src", "build:lib": "npm run clean && npm run compile && npm run lint && npm run format:check", "clean": "rimraf dist coverage", "compile": "tsc --project tsconfig.build.json", "compile:watch": "npm run compile -- --watch", "format": "prettier --write .", "format:check": "prettier --check .", "lint": "eslint src --ext .ts", "lint:fix": "npm run lint -- --fix", "test": "jest --passWithNoTests", "test:cov": "npm test -- --coverage", "test:watch": "npm test -- --watch" }, "repository": { "type": "git", "url": "git+https://github.com/siren-js/server.git" }, "keywords": [ "API", "HATEOAS", "hypermedia", "REST", "RESTful", "server", "Siren" ], "author": "Siren.js", "license": "MIT", "bugs": { "url": "https://github.com/siren-js/server/issues" }, "homepage": "https://github.com/siren-js/server#readme", "dependencies": {}, "devDependencies": { "@types/jest": "^29.2.5", "@typescript-eslint/eslint-plugin": "^5.49.0", "@typescript-eslint/parser": "^5.49.0", "eslint": "^8.33.0", "eslint-config-prettier": "^8.6.0", "jest": "^29.3.1", "prettier": "^2.8.3", "rimraf": "^3.0.2", "ts-jest": "^29.0.3", "ts-node": "^10.9.1", "typedoc": "^0.23.24", "typescript": "^4.9.4" } }