-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "@aventum/cli",
"version": "1.0.1",
"description": "Helps you get up and running easily with Aventum!",
"bin": {
"aventum": "./bin/aventum"
},
"scripts": {
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix"
},
"bugs": {
"url": "https://github.com/TryAventum/cli/issues"
},
"author": {
"name": "Mohammed Al-Mahdawi",
"email": "[email protected]",
"url": "https://al-mahdawi.com"
},
"keywords": [
"aventum",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TryAventum/cli"
},
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^5.0.0",
"cross-spawn": "^7.0.1",
"express": "^4.17.1",
"fs-extra": "^9.0.0",
"inquirer": "^7.1.0",
"ora": "^4.0.3"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}