Skip to main content
Module

x/hooks/package.json

Async middleware for JavaScript and TypeScript
Go to Latest
File
{ "name": "@feathersjs/hooks", "version": "0.6.3", "description": "Async middleware for JavaScript and TypeScript", "homepage": "https://feathersjs.com", "keywords": [ "feathers", "hooks", "hook", "async", "middleware" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/feathersjs/hooks.git" }, "author": { "name": "Feathers contributor", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs/hooks/issues" }, "engines": { "node": ">= 10" }, "main": "lib/", "types": "lib/", "scripts": { "build:browser": "webpack --config build/webpack.config.js", "build": "npm run compile && npm run build:browser", "compile": "shx rm -rf lib/ && tsc", "prepublish": "npm run build", "test:mocha": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts", "test": "npm run build && npm run test:mocha", "build:deno": "shx rm -rf deno && shx mkdir -p deno && node build/deno", "test:deno": "npm run build:deno && deno test --config tsconfig.json test/deno_test.ts" }, "directories": { "lib": "lib" }, "files": [ "CHANGELOG.md", "LICENSE", "README.md", "src/**", "lib/**", "deno/**", "dist/**" ], "publishConfig": { "access": "public" }, "devDependencies": { "@types/chai": "^4.2.15", "@types/mocha": "^8.2.2", "@types/node": "^14.14.37", "mocha": "^8.3.2", "shx": "^0.3.3", "ts-loader": "^8.1.0", "ts-node": "^9.1.1", "typescript": "^4.2.3", "webpack": "^5.28.0", "webpack-cli": "^4.6.0" }}