-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.08 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
71
72
73
{
"name": "methane-cli",
"version": "1.4.9",
"description": "methane-cli is a command-line tool for generating React components and pages with ease.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"check-lint": "eslint [0-9]*.ts",
"clean": "rimraf ./dist",
"build": "tsc index.ts --esModuleInterop true --target ES2020 --module nodenext --moduleResolution nodenext --outDir dist",
"start": "npm run clean && npm run build && node ./dist/index.js",
"dev": "ts-node index.ts",
"test": "jest",
"full-test": "eslint */[0-9]*.ts && jest --watchAll --verbose",
"full-test-fix": "eslint */[0-9]*.ts --fix && jest --watchAll --verbose",
"pub": "npm run clean && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adedoyin-Emmanuel/methane-cli.git"
},
"keywords": [
"Methane-Cli",
"Methane",
"reactJS",
"reactTS",
"node",
"cli"
],
"files": [
"dist/**/*"
],
"author": "Adedoyin Emmanuel Adeniyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Adedoyin-Emmanuel/methane-cli/issues"
},
"bin": {
"methane": "./dist/index.js",
"rg": "./dist/index.js"
},
"homepage": "https://github.com/Adedoyin-Emmanuel/methane-cli#readme",
"dependencies": {
"colors": "^1.4.0",
"commander": "^10.0.1",
"figlet": "^1.8.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.16",
"rimraf": "^5.0.9"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/node": "^7.8.0",
"@babel/preset-env": "^7.6.0",
"@types/colors": "^1.2.1",
"@types/figlet": "^1.5.5",
"@types/fs-extra": "^9.0.13",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^9.0.6",
"@types/node": "^20.7.1",
"@types/rimraf": "^3.0.2",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
}
}