-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
102 lines (102 loc) · 2.98 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "typeorm-extension",
"version": "3.6.3",
"description": "A library to create/drop database, simple seeding data sets, ...",
"author": {
"name": "Peter Placzek",
"email": "[email protected]",
"url": "https://github.com/tada5hi"
},
"repository": {
"type": "git",
"url": "https://github.com/tada5hi/typeorm-extension.git"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./bin/*": "./bin/*"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "rimraf dist && rimraf bin && npm run build:types && npm run build:js",
"build:watch": "npm run build -- --watch",
"commit": "npx git-cz",
"test": "jest --config ./test/jest.config.js",
"test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
"lint": "eslint --ext .js,.vue,.ts ./src ./test",
"lint:fix": "npm run lint -- --fix",
"docs:dev": "vitepress dev docs --temp .temp",
"docs:build": "vitepress build docs --temp .temp",
"docs:help": "vitepress --help",
"prepare": "husky install"
},
"keywords": [
"database",
"create",
"drop",
"api",
"json-api",
"jsonapi",
"migration",
"seeder",
"seeding",
"cli"
],
"bin": {
"typeorm-extension": "bin/cli.cjs",
"typeorm-extension-esm": "bin/cli.mjs"
},
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"consola": "^3.2.3",
"envix": "^1.5.0",
"locter": "^2.1.5",
"pascal-case": "^3.1.2",
"rapiq": "^0.9.0",
"reflect-metadata": "^0.2.2",
"smob": "^1.5.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
"typeorm": "~0.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@swc/core": "^1.8.0",
"@tada5hi/commitlint-config": "^1.2.1",
"@tada5hi/eslint-config-typescript": "^1.2.11",
"@tada5hi/semantic-release": "^0.3.1",
"@tada5hi/tsconfig": "^0.5.1",
"@types/jest": "^27.5.0",
"@types/node": "^22.7.5",
"@types/yargs": "^17.0.33",
"better-sqlite3": "^9.4.5",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"husky": "^9.1.6",
"jest": "^27.5.1",
"rollup": "^4.24.4",
"semantic-release": "^22.0.12",
"ts-jest": "^27.1.4",
"typeorm": "^0.3.20",
"typescript": "^4.9.5",
"vitepress": "^1.5.0",
"vue": "^3.4.31"
}
}