forked from codeschool-projects/SemanticHTMLPortfolioProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 664 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "semantic-html-portfolio-project",
"version": "1.0.0",
"description": "Convert a document to use semantic HTML.",
"private": true,
"scripts": {
"start": "browser-sync start --server ./src --files ./src",
"test": "mocha --colors test/*.spec.js",
"test:watch": "watch-run -p 'src/index.html,test/portfolio.spec.js' npm run test",
"deploy:github-pages": "git subtree push --prefix src origin gh-pages"
},
"author": "Adam Fortuna <adam@codeschool.com>",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.14.0",
"chai": "^3.5.0",
"jsdom": "^9.4.1",
"mocha": "^3.0.1",
"watch-run": "^1.2.4"
}
}