-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 951 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": "code-breaker-project",
"version": "1.0.0",
"description": "Code Breaker Project",
"private": true,
"author": "Cristina Tarantino",
"homepage": "https://cristytarantino.github.io/CodeBreakerProject/",
"scripts": {
"start": "browser-sync start --server ./src --files ./src",
"test": "./node_modules/karma/bin/karma start karma.conf.js",
"deploy:github-pages": "git subtree push --prefix src origin gh-pages"
},
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.24.5",
"chai": "^4.1.2",
"eslint": "^5.0.1",
"eslint-config-es5": "^0.5.0",
"istanbul": "^0.4.5",
"karma": "^2.0.4",
"karma-chai": "^0.1.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.2",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^5.2.0"
}
}