-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 926 Bytes
/
package.json
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
32
33
34
35
36
37
{
"name": "@surge/example-minimist",
"version": "0.1.0",
"description": "How to expose the Surge CLI within your own command line tool, built with Minimist.",
"homepage": "https://surge.sh",
"repository": "https://github.com/surge-sh/example-minimist.git",
"main": "lib/index.js",
"license": "MIT",
"author": "Kenneth Ormandy <kenneth@surge.sh> (http://kennethormandy.com)",
"contributors": [
"Kenneth Ormandy <kenneth@surge.sh> (http://kennethormandy.com)",
"Brock Whitten <brock@surge.sh> (http://sintaxi.com)"
],
"keywords": [
"surge",
"surge.sh",
"example",
"minimist",
"cli",
"deploy"
],
"bin": {
"example": "bin/example.js"
},
"dependencies": {
"chalk": "1.1.1",
"minimist": "1.2.0",
"surge": "latest"
},
"scripts": {
"start": "node ./bin/example",
"lint": "standard"
},
"devDependencies": {
"standard": "5.3.1"
}
}