forked from codeschool-projects/jQueryBadgesProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 866 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
31
{
"name": "project-html-portfolio",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"start": "browser-sync start --server ./src --files ./src",
"test": "mocha -t 20000 --compilers js:babel-register test/*.spec.js",
"test-watch": "npm test -- --bail --watch",
"deploy:github-pages": "git subtree push --prefix src origin gh-pages"
},
"author": "Sergio Cruz <[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",
"javascript-sandbox": "git+https://github.com/codeschool/javascript-sandbox.git",
"jsdom": "^9.4.1",
"mocha": "^3.0.1",
"sinon": "^1.17.5"
},
"engines": {
"node": ">=4.6",
"npm": ">=2.15"
},
"babel": {
"presets": ["es2015"]
}
}