Skip to content

Commit 520318e

Browse files
committed
init files
0 parents  commit 520318e

File tree

6 files changed

+732
-0
lines changed

6 files changed

+732
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

bin/coderoad-builder

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env node
2+
3+
require = require('esm')(module /*, options*/);
4+
require('../src/cli').cli(process.argv);

package-lock.json

Lines changed: 314 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "@argemiront/coderoad-builder",
3+
"version": "0.0.1",
4+
"description": "A CLI to build the configuration file for Coderoad Tutorials",
5+
"main": "src/main.js",
6+
"bin": {
7+
"@argemiront/coderoad-builder": "bin/coderoad-builder",
8+
"coderoad-builder": "bin/coderoad-builder"
9+
},
10+
"publishConfig": {
11+
"access": "public"
12+
},
13+
"scripts": {
14+
"test": "echo \"Error: no test specified\" && exit 1"
15+
},
16+
"keywords": [],
17+
"author": "Argemiro Neto",
18+
"license": "ISC",
19+
"dependencies": {
20+
"arg": "^4.1.3",
21+
"esm": "^3.2.25",
22+
"inquirer": "^7.1.0",
23+
"js-yaml": "^3.13.1",
24+
"lodash": "^4.17.15",
25+
"simple-git": "^2.4.0"
26+
}
27+
}

0 commit comments

Comments
 (0)