-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.25 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "testx",
"version": "3.2.1",
"description": "A library for executing keyword driven tests with Protractor.",
"main": "lib/index.js",
"scripts": {
"build": "coffee -o lib/ -c src/",
"watch": "coffee -o lib/ -cw src/",
"prepublish": "npm run build",
"pretest": "webdriver-manager update; npm run build",
"test": "protractor tests/conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/testxio/testx.git"
},
"keywords": [
"protractor",
"selenium",
"webdriver",
"testing",
"test",
"web testing",
"functional testing",
"regression testing",
"yaml",
"keyword",
"keyword driven",
"keyword-driven"
],
"author": "Greyarch BV",
"license": "ISC",
"bugs": {
"url": "https://github.com/testxio/testx/issues"
},
"homepage": "http://testx.io",
"dependencies": {
"@testx/context-resolver": "^1.0.0",
"@testx/logger-default": "^1.1.0",
"@testx/parser-yaml": "^3.0.1",
"csv-parse": "^4.4.6",
"duration-js": "^4.0.0",
"jasmine2-custom-message": "^0.8.4",
"lodash": "^4.17.20"
},
"devDependencies": {
"coffeescript": "^2.5.0",
"protractor": "^5.4.2"
},
"testx": {
"logScript": false,
"actionTimeout": 5000
}
}