-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "bson-schema-to-typescript",
"version": "0.0.26",
"description": "Compile MongoDB JSON Schema to TypeScript typings",
"main": "dist/index.js",
"bin": {
"bson2ts": "dist/cli.js",
"bson-schema-to-typescript": "dist/cli.js"
},
"types": "dist/index.d.ts",
"repository": "https://github.com/lirbank/bson-schema-to-typescript.git",
"author": "Mikael Lirbank",
"license": "MIT",
"private": false,
"files": [
"dist"
],
"keywords": [
"json",
"bson",
"schema",
"mongo",
"mongodb",
"typescript"
],
"scripts": {
"pub": "yarn publish && git push && git push --tags",
"prepublishOnly": "yarn build",
"dev": "tsc --watch",
"build": "tsc",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix"
},
"dependencies": {
"@types/mongodb": "^3.5.25",
"@types/prettier": "^2.0.2",
"fp-ts": "^2.8.2",
"io-ts": "^2.2.10",
"json-schema-to-typescript": "^9.1.1",
"mongodb": "^3.5.9",
"prettier": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.5",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.5.0",
"jest": "^26.1.0",
"typescript": "^4.0.2"
}
}