forked from codeschool-projects/SemanticHTMLPortfolioProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 870 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
{
"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 --compilers js:babel-register 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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"browser-sync": "^2.14.0",
"chai": "^3.5.0",
"jsdom": "^9.4.1",
"mocha": "^3.0.1",
"watch-run": "^1.2.4"
},
"engines": {
"node": ">=4.6",
"npm": ">=2.15"
},
"babel": {
"presets": ["es2015"]
}
}