-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
24 lines (24 loc) · 931 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
{
"name": "@surge/example-codeship",
"version": "0.1.0",
"description": "An example using Codeship for continuous deployment to Surge.",
"homepage": "https://surge.sh",
"repository": "https://github.com/surge-sh/example-codeship.git",
"license": "MIT",
"private": true,
"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", "codeship", "static"],
"devDependencies": {
"mocha": "2.2.5",
"surge": "latest"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"compile": "echo \"If you’re using a static site generator or other compilation step, you could run it here!\"",
"deploy": "npm run compile && surge --project ./ --domain example-codeship.surge.sh"
}
}