-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare boilerplate for create-hyperweb-app
- Loading branch information
1 parent
26dd2ff
commit 2eb0214
Showing
3 changed files
with
62 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[ | ||
{ | ||
"name": "__USERFULLNAME__", | ||
"message": "Enter author full name", | ||
"required": true | ||
}, | ||
{ | ||
"name": "__USEREMAIL__", | ||
"message": "Enter author email", | ||
"required": true | ||
}, | ||
{ | ||
"name": "__MODULENAME__", | ||
"message": "Enter the module name", | ||
"required": true | ||
}, | ||
{ | ||
"name": "__MODULEDESC__", | ||
"message": "Enter the module description", | ||
"required": true | ||
}, | ||
{ | ||
"name": "__REPONAME__", | ||
"message": "Enter the repository name", | ||
"required": true | ||
}, | ||
{ | ||
"name": "__USERNAME__", | ||
"message": "Enter your github username", | ||
"required": true | ||
}, | ||
{ | ||
"name": "__ACCESS__", | ||
"message": "Module access?", | ||
"choices": [ | ||
"public", | ||
"restricted" | ||
], | ||
"type": "list", | ||
"required": true | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
{ | ||
"name": "hyperweb", | ||
"version": "0.0.1", | ||
"description": "Hyperweb smart contracts", | ||
"author": "Hyperweb <[email protected]>", | ||
"homepage": "https://github.com/hyperweb-io/hyperweb#readme", | ||
"author": "__USERFULLNAME__ <__USEREMAIL__>", | ||
"description": "__MODULEDESC__", | ||
"homepage": "https://github.com/__USERNAME__/__REPONAME__", | ||
"license": "SEE LICENSE IN LICENSE", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/hyperweb-io/hyperweb" | ||
"url": "https://github.com/__USERNAME__/__REPONAME__" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/hyperweb-io/hyperweb/issues" | ||
"url": "https://github.com/__USERNAME__/__REPONAME__/issues" | ||
}, | ||
"publishConfig": { | ||
"access": "__ACCESS__", | ||
"directory": "dist" | ||
}, | ||
"scripts": { | ||
"clean": "rimraf dist/contracts/**", | ||
|