-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 KB
/
package.json
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
{
"name": "@gatsbylabs/malt",
"version": "0.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/bin.js",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"author": "Enoch Chau <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^27.0.3",
"@types/mkdirp": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^27.4.5",
"esbuild": "^0.14.23",
"eslint": "^8.4.1",
"husky": ">=6",
"jest": "^27.4.5",
"lint-staged": ">=10",
"mongoose": "^6.1.2",
"npm-run-all": "^4.1.5",
"pinst": ">=2",
"prettier": "^2.5.1"
},
"scripts": {
"check": "tsc",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"test": "jest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"dev": "node build.cjs && node --enable-source-maps dist/bin.js",
"fmt": "prettier . --write",
"postinstall": "husky install",
"prepublishOnly": "npm-run-all pinst:disable --parallel test lint --sequential build",
"pinst:disable": "pinst --disable",
"postpublish": "pinst --enable"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
},
"dependencies": {
"@types/node": "^16",
"chalk": "^4",
"change-case": "^4.1.2",
"commander": "^9.0.0",
"mkdirp": "^1.0.4",
"typescript": "^4.4",
"upper-case": "^2.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbylabs/malt.git"
},
"keywords": [
"Mongoose",
"typescript",
"generator",
"mongodb"
],
"bugs": {
"url": "https://github.com/gatsbylabs/malt/issues"
},
"homepage": "https://github.com/gatsbylabs/malt/#readme"
}