-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 1.16 KB
/
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
32
33
34
35
{
"version": "0.0.1",
"private": true,
"name": "gabaritei",
"description": "Universal framework for Virtual Classes",
"repository": "https://github.com/guipimenta/GabariteiProject",
"license": "MIT",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-jsbeautifier": "^0.2.10",
"grunt-ngdocs": "^0.2.9",
"grunt-todos": "^0.3.0",
"jasmine-core": "^2.3.4",
"karma": "^0.12.16",
"karma-chrome-launcher": "^0.1.4",
"karma-coverage": "*",
"karma-firefox-launcher": "*",
"karma-htmlfile-reporter": "~0.2",
"karma-jasmine": "^0.3.6",
"karma-nested-reporter": "~0.1",
"karma-ng-html2js-preprocessor": "*",
"karma-phantomjs-launcher": "~0.1",
"karma-spec-reporter": "0.0.19"
},
"scripts": {
"prestart": "npm install",
"start": "http-server -a 0.0.0.0 -p 8000",
"pretest": "npm install",
"test": "node node_modules/karma/bin/karma start test-angular/karma.conf.js",
"test-single-run": "node node_modules/karma/bin/karma start test-angular/karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update"
}
}