-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 797 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 797 Bytes
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
{
"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
}
}