Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (31 sloc)
797 Bytes
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
{ | |
"private": true, | |
"name": "githubbox", | |
"type": "module", | |
"version": "1.0.0", | |
"description": "Open any GitHub repo in CodeSandbox", | |
"main": "src/index.js", | |
"scripts": { | |
"test": "node --experimental-modules src/index.spec.js | tap-spec", | |
"format": "prettier --write '**/*.{js,css,json,md}'", | |
"prepub": "yarn test", | |
"pub": "wrangler publish", | |
"prepub:prod": "yarn test", | |
"pub:prod": "wrangler publish --env production" | |
}, | |
"author": "Dominik Ferber <dominik.ferber@gmail.com>", | |
"license": "MIT", | |
"devDependencies": { | |
"prettier": "^1.18.2", | |
"tap-spec": "5.0.0", | |
"tape": "4.13.2", | |
"wrangler": "0.0.2" | |
}, | |
"prettier": { | |
"singleQuote": true, | |
"semi": false, | |
"trailingComma": "all", | |
"tabWidth": 2, | |
"printWidth": 80 | |
} | |
} |