-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "quikjs",
"version": "2.1.4",
"description": "A a powerful tool designed to streamline the process of building APIs for Express.js applications",
"main": "index.js",
"files": [
"index.js",
"generate.js",
"prompt.js",
"constants.js",
"sampledata.js",
"templates",
"plugins",
"utils"
],
"bin": {
"quik-g-p": "./index.js",
"quik-g-m": "./generate.js"
},
"scripts": {
"start": "node index.js",
"generate": "node generate.js",
"build": "rollup --config",
"test": "jest --config jest.config.js",
"coverage": "jest --config jest.config.js --coverage",
"serve-coverage": "jest --config jest.config.js --coverage && node coverage.js",
"pre-commit": "lint-staged",
"lint": "eslint . --fix --max-warnings=0",
"format": "prettier . --write"
},
"author": "waglesathwik",
"license": "MIT",
"dependencies": {
"handlebars": "^4.7.8",
"inquirer": "^9.2.16",
"prettier": "^3.2.5",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"type": "module",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/register": "^7.23.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.1.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.7.0",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"globals": "^15.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"rollup": "^4.17.2"
}
}