-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 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
{
"name": "mongoose-schema-to-typescript-interface",
"version": "0.0.0-semantically-released",
"description": "Generates TypeScript interfaces from Mongoose Schemas",
"main": "./dist/generate-interface.js",
"scripts": {
"test": "npm run build && jest",
"build": "rm -rf dist/ && tsc",
"semantic-release":
"semantic-release pre && npm publish && semantic-release post",
"precommit": "npm test && lint-staged",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url":
"https://github.com/JamesHenry/mongoose-schema-to-typescript-interface.git"
},
"keywords": ["mongoose", "typescript", "schema", "interface"],
"author": "James Henry <[email protected]>",
"license": "MIT",
"bugs": {
"url":
"https://github.com/JamesHenry/mongoose-schema-to-typescript-interface/issues"
},
"homepage":
"https://github.com/JamesHenry/mongoose-schema-to-typescript-interface#readme",
"devDependencies": {
"@types/jest": "21.1.8",
"@types/mongoose": "4.7.29",
"@types/node": "8.0.58",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.13.1",
"husky": "0.14.3",
"jest": "21.2.1",
"lint-staged": "6.0.0",
"prettier-eslint-cli": "4.4.2",
"semantic-release": "8.2.0",
"ts-jest": "21.2.4",
"typescript": "2.6.2",
"typescript-eslint-parser": "10.0.0"
},
"lint-staged": {
"src/**/*": ["prettier-eslint --write", "git add"],
"test/**/*": ["prettier-eslint --write", "git add"]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bin": {
"ms2tsi": "./bin/ms2tsi"
},
"dependencies": {
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"commander": "2.12.2",
"lodash.camelcase": "4.3.0",
"lodash.upperfirst": "4.3.1",
"mongoose": "4.13.7"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": ["ts", "js", "json"]
}
}