Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dherman committed Nov 29, 2020
0 parents commit 32532f9
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Create Neon

Create Neon projects with zero configuration.

3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node

console.log('create-neon');
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "create-neon",
"version": "0.1.0",
"description": "Create Neon projects with zero configuration.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"create-neon": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neon-bindings/create-neon.git"
},
"keywords": [
"Neon",
"Rust"
],
"author": "David Herman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neon-bindings/create-neon/issues"
},
"homepage": "https://github.com/neon-bindings/create-neon#readme"
}

0 comments on commit 32532f9

Please sign in to comment.