This repository was archived by the owner on Dec 20, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.1 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@poppinss/data-models",
"version": "2.0.1",
"description": "Abstract data models with first class support for relationships",
"main": "build/index.js",
"files": [
"build/src",
"build/index.d.ts",
"build/index.js"
],
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test": "node japaFile.js",
"lint": "tslint --project tsconfig.json",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile && typedoc --theme markdown --HideSources --excludePrivate && git add docs",
"commit": "git-cz",
"release": "np",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poppinss/data-models.git"
},
"keywords": [
"data",
"datamodels",
"models"
],
"author": "virk,poppinss",
"license": "MIT",
"bugs": {
"url": "https://github.com/poppinss/data-models/issues"
},
"homepage": "https://github.com/poppinss/data-models#readme",
"devDependencies": {
"@adonisjs/mrm-preset": "^2.1.0",
"@types/node": "^12.7.5",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"del-cli": "^3.0.0",
"doctoc": "^1.4.0",
"husky": "^3.0.5",
"japa": "^3.0.1",
"mrm": "^1.2.2",
"np": "^5.1.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.0",
"typedoc-plugin-external-module-name": "^2.1.0",
"typedoc-plugin-markdown": "^2.2.6",
"typescript": "^3.6.3"
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"husky": {
"hooks": {
"pre-commit": "doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"dependencies": {
"@poppinss/utils": "^2.0.0"
}
}