feathers/packages/errors/package.json
2020-12-16 21:10:58 -08:00

60 lines
1.3 KiB
JSON

{
"name": "@feathersjs/errors",
"description": "Common error types for Feathers apps",
"version": "5.0.0-pre.1",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 10"
},
"directories": {
"lib": "lib"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc",
"test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
},
"publishConfig": {
"access": "public"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**",
"*.d.ts",
"*.js"
],
"devDependencies": {
"@feathersjs/feathers": "^5.0.0-pre.1",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"mocha": "^8.2.1",
"shx": "^0.3.3",
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
},
"gitHead": "e6b82b809c21da298501a12b82e72e166468994b"
}