-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 912 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 912 Bytes
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
{
"name": "pluga-cli",
"version": "0.1.7",
"description": "Pluga developer platform cli",
"main": "lib/index.js",
"bin": {
"pluga": "bin/pluga.js"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">= 18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint lib/**/*.js"
},
"repository": "PlugaDotCo/pluga-cli",
"keywords": [
"pluga",
"cli"
],
"author": "leocamelo",
"license": "MIT",
"bugs": {
"url": "https://github.com/PlugaDotCo/pluga-cli/issues"
},
"homepage": "https://github.com/PlugaDotCo/pluga-cli#readme",
"dependencies": {
"cfonts": "^3.1.1",
"commander": "^9.4.1",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}