-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "wildayjs",
"version": "0.2.0",
"description": "A Full-Stack JavaScript Web Framework Inspired by Ruby on Rails. If you love Ruby on Rails, you will feel familiar with WildayJS. If you never use Ruby on Rails, you will love WildayJS.",
"main": "index.js",
"bin": {
"wildayjs": "./bin/wildayjs"
},
"files": [
"bin/",
"lib/",
"index.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate:migration": "node lib/generateMigration.js",
"db:migrate": "node lib/applyMigrations.js"
},
"keywords": [
"web-framework",
"rails-like",
"sqlite",
"migration",
"orm",
"mvc",
"full-stack",
"javascript",
"nodejs"
],
"author": "David Winalda <[email protected]>",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.7.0",
"chalk": "^4.1.2",
"commander": "^13.0.0",
"dotenv": "^16.0.0",
"ejs": "^3.1.10",
"sqlite3": "^5.1.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidwinalda/wildayjs.git"
},
"bugs": {
"url": "https://github.com/davidwinalda/wildayjs/issues"
},
"homepage": "https://github.com/davidwinalda/wildayjs#readme",
"engines": {
"node": ">=20.0.0"
},
"preferGlobal": true
}