-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
104 lines (104 loc) · 3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@sap-webide/webide-client-tools",
"version": "4.0.0",
"license": "Apache-2.0",
"main": "src/api.js",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@types/webpack": "4.4.17",
"acorn": "8.6.0",
"connect": "3.7.0",
"fs-extra": "10.0.0",
"glob": "7.2.0",
"http": "0.0.0",
"http-proxy-middleware": "0.21.0",
"js-string-escape": "1.0.1",
"lodash": "4.17.21",
"optional-require": "1.1.8",
"requirejs": "2.3.6",
"serve-static": "1.14.1",
"webpack": "4.46.0",
"which": "2.0.2"
},
"peerDependencies": {
"karma": ">= 1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage": "1.1.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.3",
"karma-openui5": "0.2.2",
"karma-requirejs": "1.1.0",
"mocha": "*"
},
"devDependencies": {
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"chai-string": "1.5.0",
"eslint": "8.3.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"gitty": "3.7.2",
"jest": "27.4.2",
"jsonfile": "6.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.0",
"semver": "7.3.5",
"shx": "0.3.3",
"typedoc": "0.22.10",
"typescript": "4.5.2",
"vuepress": "1.8.2"
},
"resolutions": {
"**/mixin-deep": "^1.3.2",
"**/set-value": "^2.0.1"
},
"scripts": {
"ci_full_flow": "npm-run-all format_validate type_check lint test docs website:build",
"release": "bash ./scripts/release.sh",
"lint": "eslint src/**/*.js test/**/*.js test_integration/**/*.js",
"test": "jest",
"test_integration": "npm-run-all init_example execute_integration_tests unlink_example",
"init_example": "node scripts/init_example.js",
"execute_integration_tests": "jest --maxWorkers 1 --config test_integration/jest.config.json",
"unlink_example": "cd ./example && npm unlink @sap-webide/webide-client-tools",
"docs": "shx rm -rf docs/web/html_docs && typedoc api.d.ts --tsconfig tsdocsconfig.json --out docs/web/html_docs --name WebideClientTools",
"format": "prettier --write \"**/*.@(js|json|md)\"",
"format_validate": "prettier --list-different \"**/*.@(js|json|md)\"",
"type_check": "tsc",
"website:dev": "vuepress dev docs",
"website:build": "vuepress build docs"
},
"files": [
"src",
"docs",
"example",
"resources",
"README.md",
"api.d.ts"
],
"prettier": {
"semi": false
},
"jest": {
"testEnvironment": "node",
"testRegex": "test/.*spec\\.js$",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coveragePathIgnorePatterns": [
"<rootDir>/src/dev_server.js",
"<rootDir>/src/middleware.js",
"<rootDir>/src/di_backend.js"
]
},
"typings": "api.d.ts"
}