-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 1013 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
{
"name": "jasmine-testreporter",
"version": "0.1.0",
"description": "",
"main": "test-reporter.js",
"scripts": {
"test": "node_modules/jasmine/bin/jasmine.js",
"reinstall-in-dummy-project": "cd ./dummy-project && npm install && cd .. && rm -rf ./dummy-project/node_modules/jasmine-testreporter && rsync -av --progress . ./dummy-project/node_modules/jasmine-testreporter --exclude dummy-project --exclude .git",
"run-dummy-project-tests": "npm run reinstall-in-dummy-project && cd ./dummy-project && npm run protractor-test",
"run-webdriver-for-dummy-tests": "cd ./dummy-project && npm run webdriver-manager-start",
"update-webdriver-for-dummy-tests": "cd ./dummy-project && npm run webdriver-manager-update"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"archiver": "^2.1.1",
"handlebars": "^4.0.11",
"jquery": "^3.3.1",
"node-zip": "^1.1.1",
"path": "^0.12.7"
},
"devDependencies": {
"jasmine": "^3.1.0"
}
}