-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
63 lines (63 loc) · 1.57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@ui5/uiveri5",
"version": "1.49.12",
"description": "UIVeri5 is an E2E testing framework for UI5-based applications.",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"tool"
],
"dependencies": {
"adm-zip": "^0.4.7",
"glob": "~4.3.5",
"lodash": "^4.17.2",
"mkdirp": "^0.5.1",
"png-crop": "^0.0.1",
"pngjs": "^2.2.0",
"protractor": "~5.3.0",
"proxyquire": "~1.4.0",
"q": "^1.4.1",
"request": "^2.67.0",
"should": "^13.2.3",
"simple-git": "^1.21.0",
"superagent": "^3.8.3",
"tar": "^4.4.4",
"xmlbuilder": "^9.0.4",
"yargs": "^3.8.0"
},
"devDependencies": {
"eslint": "^5.2.0",
"express": "^4.13.4",
"grunt": "^1.0.2",
"grunt-contrib-connect": "^1.0.2",
"grunt-shell": "^2.1.0",
"jasmine": "^2.2.1",
"jasminewd2": "0.0.6",
"multer": "^1.1.0",
"portfinder": "^0.4.0",
"sinon": "^3.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/SAP/ui5-uiveri5.git"
},
"bin": {
"uiveri5": "bin/uiveri5"
},
"engines": {
"node": ">= 8.0",
"npm": ">= 5"
},
"scripts": {
"uiveri5": "node bin/uiveri5",
"test": "npm run test:unit && npm run test:scenario && npm run test:browser",
"test:unit": "jasmine JASMINE_CONFIG_PATH=spec/jasmine.json",
"test:scenario": "jasmine JASMINE_CONFIG_PATH=e2e/scenario/jasmine.json",
"test:browser": "jasmine JASMINE_CONFIG_PATH=e2e/browser/jasmine.json",
"lint": "eslint ."
},
"main": "src/uiveri5.js"
}