UNPKG

1.9 kBJSONView Raw
1{
2 "name": "@adonisjs/generic-exceptions",
3 "version": "3.0.1",
4 "description": "List of generic exceptions to be used in all other repos",
5 "main": "build/src/index",
6 "files": [
7 "build/src"
8 ],
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/adonisjs/adonis-generic-exceptions.git"
12 },
13 "scripts": {
14 "mrm": "mrm --preset=@adonisjs/mrm-preset",
15 "pretest": "npm run lint",
16 "test": "nyc node japaFile.js",
17 "prepublishOnly": "npm run build",
18 "lint": "tslint --project tsconfig.json",
19 "clean": "del build && del docs",
20 "compile": "npm run lint && npm run clean && tsc",
21 "build": "npm run compile && typedoc --theme minimal",
22 "coverage": "nyc report --reporter=text-lcov | coveralls",
23 "commit": "git-cz"
24 },
25 "keywords": [
26 "adonisjs",
27 "adonis",
28 "exceptions"
29 ],
30 "author": "virk",
31 "license": "MIT",
32 "dependencies": {
33 "node-exceptions": "^4.0.1",
34 "upcast": "^4.0.0"
35 },
36 "devDependencies": {
37 "@adonisjs/mrm-preset": "^1.0.14",
38 "@types/node": "^10.12.0",
39 "commitizen": "^3.0.4",
40 "coveralls": "^3.0.2",
41 "cz-conventional-changelog": "^2.1.0",
42 "del-cli": "^1.1.0",
43 "japa": "^2.0.6",
44 "japa-cli": "^1.0.1",
45 "mrm": "^1.2.1",
46 "nyc": "^13.1.0",
47 "pkg-ok": "^2.3.1",
48 "tern": "^0.22.3",
49 "ts-node": "^7.0.1",
50 "tslint": "^5.11.0",
51 "tslint-eslint-rules": "^5.4.0",
52 "typedoc": "^0.13.0",
53 "typedoc-plugin-external-module-name": "^1.1.3",
54 "typedoc-plugin-single-line-tags": "^1.0.0",
55 "typescript": "^3.1.3",
56 "yorkie": "^2.0.0"
57 },
58 "nyc": {
59 "exclude": [
60 "test"
61 ],
62 "extension": [
63 ".ts"
64 ]
65 },
66 "config": {
67 "commitizen": {
68 "path": "cz-conventional-changelog"
69 }
70 },
71 "gitHooks": {
72 "commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
73 }
74}