Skip to content

Commit

Permalink
Add standard npm start to run local webserver
Browse files Browse the repository at this point in the history
  • Loading branch information
dmsnell committed Feb 7, 2017
1 parent a63b2e1 commit 95d03f5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "gutenberg",
"version": "1.0.0",
"description": "Prototyping a new WordPress editor experience",
"main": "index.html",
"scripts": {
"start": "http-server -p 5000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/gutenberg.git"
},
"keywords": [
"WordPress",
"editor",
"prototype"
],
"author": "Automattic, Inc.",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/Automattic/gutenberg/issues"
},
"homepage": "https://github.com/Automattic/gutenberg#readme",
"devDependencies": {
"http-server": "0.9.0"
}
}

0 comments on commit 95d03f5

Please sign in to comment.