-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 963 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
38
{
"name": "@surge/example-commander",
"version": "0.1.0",
"description": "How to expose the Surge CLI within your own command line tool, built with Commander.",
"homepage": "https://surge.sh",
"repository": "https://github.com/surge-sh/example-commander.git",
"main": "lib/index.js",
"license": "MIT",
"author": "Kenneth Ormandy <[email protected]> (http://kennethormandy.com)",
"contributors": [
"Kenneth Ormandy <[email protected]> (http://kennethormandy.com)",
"Brock Whitten <[email protected]> (http://sintaxi.com)"
],
"keywords": [
"surge",
"surge.sh",
"example",
"commander",
"cli",
"deploy"
],
"bin": {
"example": "./bin/example.js"
},
"dependencies": {
"chalk": "1.1.1",
"commander": "2.9.0",
"surge": "0.17.2"
},
"scripts": {
"start": "node ./bin/example",
"lint": "standard"
},
"devDependencies": {
"standard": "5.3.1",
"string-length": "1.0.1"
}
}