-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.66 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
{
"name": "nodejs-artisan",
"version": "2.2.0",
"description": "A command-line tool for generating various components in Node.js projects, similar to Laravel Artisan.",
"main": "lib/index.js",
"files": [
"lib"
],
"exports": {
"./lib/cli.js": "./lib/cli.js",
".": "./lib/index.js"
},
"types": "lib/index.d.ts",
"scripts": {
"build": "babel src --out-dir lib && npx tsc --declaration --emitDeclarationOnly --outDir lib",
"build:types": "npx tsc --declaration --emitDeclarationOnly --outDir lib",
"test": "jest",
"start": "node lib/cli.js",
"lint": "eslint ./src",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"type": "module",
"author": "Miftah704",
"license": "MIT",
"keywords": [
"cli",
"nodejs",
"node",
"npm",
"artisan",
"generator",
"commander",
"chalk",
"command-line",
"artisan-command",
"express-js",
"laravel"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"figures": "^6.1.0",
"table": "^6.9.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"eslint": "^8.41.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"typescript": "^5.7.2"
},
"bin": {
"artisan": "./artisan.js"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miftah704/nodejs-artisan.git"
},
"bugs": {
"url": "https://github.com/miftah704/nodejs-artisan/issues"
},
"homepage": "https://github.com/miftah704/nodejs-artisan#readme"
}