UNPKG

api_twins_server

Version:
60 lines (59 loc) 1.47 kB
{ "name": "api_twins_server", "version": "1.0.9", "description": "API mock server", "main": "./bin/api_twins_server", "repository": { "type": "git", "url": "git://github.com/maxsivanov/api_twins_server.git" }, "keywords": [ "cli", "http", "https", "mock", "api" ], "scripts": { "test": "jest", "build": "rm -rf \"dist/*\" && tsc", "lint": "eslint \"src/**/*.ts\"", "publish": "npm run lint && npm run build", "start": "node dist/index.js", "dev": "NODE_OPTIONS=--enable-source-maps NODE_ENV=development concurrently \"tsc -w\" \"nodemon --watch dist --watch ${TWINS_PATH:=./api_twins} -e ts,json dist/index.js\"" }, "files": [ "bin", "dist" ], "author": "Max S. Ivanov <maxsivanov@gmail.com>", "license": "MIT", "dependencies": { "cookie-parser": "^1.4.6", "express": "^4.18.2", "pino": "^8.6.1" }, "devDependencies": { "@types/cookie-parser": "^1.4.3", "@types/express": "^4.17.14", "@types/jest": "^29.4.0", "@typescript-eslint/eslint-plugin": "^5.40.0", "@typescript-eslint/parser": "^5.40.0", "concurrently": "^7.4.0", "eslint": "^8.25.0", "jest": "^29.4.2", "nodemon": "^2.0.20", "ts-jest": "^29.0.5", "typescript": "^4.8.4" }, "bin": { "api_twins_server": "./bin/api_twins_server" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "roots": [ "<rootDir>/src/" ] } }