-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.1 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
36
37
38
39
40
41
{
"name": "api-testing-protractor-typescript",
"version": "1.0.0",
"description": "This API Test Automation framework is designed using Request node module, Protractor, Jasmine and TypeScript",
"main": "conf.js",
"dependencies": {
"jasmine": "^4.5.0",
"protractor": "^7.0.0",
"protractor-beautiful-reporter": "^1.3.6",
"request": "^2.88.2",
"rimraf": "^5.0.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.13",
"npm-check-updates": "^16.5.6",
"tslint": "^5.20.1",
"yargs-parser": "^21.1.1"
},
"scripts": {
"clean": "rimraf temp/ && rimraf test-results/ && rimraf download/",
"tsc": "tsc",
"pretest": "npm run clean && npm run tsc",
"test": "npm run pretest && protractor temp/conf.js",
"webdriver-update": "node node_modules/protractor/bin/webdriver-manager update"
},
"keywords": [
"request",
"protractor",
"typescript",
"javascript",
"angular",
"angularjs",
"vscode",
"testing",
"api testing"
],
"author": "Code with MMAK",
"license": "MIT"
}