forked from SAP/karma-ui5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "karma-ui5",
"description": "A Karma plugin for UI5",
"version": "1.1.0",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"homepage": "https://github.com/SAP/karma-ui5",
"bugs": "https://github.com/SAP/karma-ui5/issues/",
"keywords": [
"ui5",
"openui5",
"sapui5",
"karma-adapter",
"karma-plugin"
],
"engines": {
"node": ">= 8.5",
"npm": ">= 5"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP/karma-ui5.git"
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"test": "npm run lint && npm run unit-coverage && npm run integration",
"unit": "jest test/framework.test.js",
"unit-coverage": "jest test/framework.test.js --coverage",
"integration": "jest test/integration.test.js",
"integration-internet-explorer": "jest test/integration.test.js --browsers=IE",
"dev": "webpack --watch --mode=development",
"prepare": "webpack",
"preversion": "npm test",
"version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push --follow-tags",
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__mocks__/",
"/^integration$/"
]
},
"peerDependencies": {
"karma": ">= 1.7.1"
},
"dependencies": {
"@ui5/fs": "^1.1.2",
"@ui5/project": "^1.1.1",
"@ui5/server": "^1.5.1",
"http-proxy": "^1.18.0",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@openui5/sap.ui.core": "^1.72.1",
"babel-loader": "^8.0.6",
"core-js": "^3.4.2",
"eslint": "^6.7.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-jsdoc": "^15.12.2",
"execa": "^3.3.0",
"istanbul-lib-coverage": "^2.0.5",
"jest": "^24.9.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-edge-launcher": "^0.4.2",
"karma-ie-launcher": "^1.0.0",
"karma-qunit": "^4.0.0",
"license-webpack-plugin": "^2.1.3",
"puppeteer": "^2.0.0",
"qunit": "^2.9.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}