-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "suff",
"version": "0.0.2",
"description": "Welcome to `suff` - a powerful and flexible framework designed to streamline the creation of REST APIs with Node.js and Express. Whether you're a beginner looking for a quick setup or an experienced developer seeking a customizable solution, `suff` simplifies the process of building and configuring your APIs.",
"main": "index.mjs",
"bin": {
"create-suff-server": "bin/init.mjs",
"suff": "bin/cli.mjs"
},
"directories": {
"doc": "docs",
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prenext/suff"
},
"keywords": [
"framework",
"api",
"node",
"express"
],
"author": "prenext",
"license": "ISC",
"dependencies": {
"fs-extra": "^11.2.0",
"inquirer": "^10.1.6",
"ora": "^8.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin",
"lib",
"index.mjs",
"package.json",
"README.md"
]
}