-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.78 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.78 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
{
"name": "@fca.gg/orm",
"version": "1.2.0",
"description": "ORM Library for Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "npm run build && npm run build_templates",
"build": "rm -rf lib && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"build_templates": "mkdir -p ./lib/templates && cp -r ./src/templates ./lib"
},
"dependencies": {
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"chalk": "4.1.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"get-installed-path": "^4.0.8",
"knex": "^3.1.0",
"mysql": "^2.18.1",
"pg": "^8.12.0",
"prompts": "^2.4.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4",
"@types/ejs": "^3.1.3",
"@types/get-installed-path": "^4.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.53",
"@types/prompts": "^2.4.5",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"mocha": "^9",
"oclif": "^3.17.1",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.5.3"
},
"bin": {
"orm": "./bin/run"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"bin": "orm",
"dirname": "orm",
"commands": "./lib/commands",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "https://github.com/FCAgreatgoals/orm.git",
"homepage": "https://github.com/FCAgreatgoals/orm",
"bugs": "https://github.com/FCAgreatgoals/orm/issues"
},
"publishConfig": {
"access": "restricted"
},
"author": "FCA <developpment@fca.gg> (https://fca.gg/)",
"license": "AGPL-3.0"
}