forked from surge-sh/example-cors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 879 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
{
"name": "@surge/example-cors",
"version": "0.1.0",
"description": "An example project using Cross-Origin Resource Sharing on Surge.",
"homepage": "https://surge.sh/help/enabling-cross-origin-resource-sharing",
"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)"
],
"repository": "[email protected]:surge-sh/example-cors.git",
"keywords": ["surge", "surge.sh", "example", "cors"],
"devDependencies": {
"mocha": "2.2.5",
"surge": "latest"
},
"scripts": {
"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 ./src"
}
}