forked from digi-serve/ab-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "ab-cli",
"version": "0.0.1",
"description": "A command line helper for our AppBuilder development.",
"main": "index.js",
"repository": "https://github.com/Hiro-Nakamura/ab-cli",
"author": "Johnny Hausman",
"license": "MIT",
"private": false,
"bin": {
"appbuilder": "index.js"
},
"dependencies": {
"async": "^2.6.3",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"cross-spawn": "^6.0.5",
"ejs": "^2.7.4",
"inquirer": "^6.2.1",
"junk": "^2.1.0",
"lodash": "^4.17.19",
"minimist": "^1.2.3",
"nanoid": "^2.1.11",
"progress": "^2.0.3",
"shelljs": "^0.8.4"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^1.19.1",
"write-file-trim": "^1.0.9"
},
"scripts": {
"test": "npm run lint && npm run custom-tests && echo 'Done'",
"lint": "eslint --fix . && echo '✅ Your .js files look good.'",
"custom-tests": "echo '(no custom tests yet)'"
}
}