-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
143 lines (143 loc) · 3.55 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@ui5/project",
"version": "1.2.0",
"description": "UI5 Tooling - Project ",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"build",
"development",
"tool"
],
"main": "index.js",
"engines": {
"node": ">= 10",
"npm": ">= 5"
},
"scripts": {
"test": "npm run lint && npm run jsdoc-generate && npm run coverage",
"test-azure": "npm run lint && npm run jsdoc-generate && npm run coverage-xunit",
"lint": "eslint ./",
"unit": "rimraf test/tmp && ava",
"unit-verbose": "rimraf test/tmp && cross-env UI5_LOG_LVL=verbose ava --verbose --serial",
"unit-watch": "rimraf test/tmp && ava --watch",
"unit-nyan": "rimraf test/tmp && ava --tap | tnyan",
"unit-xunit": "rimraf test/tmp && ava --tap | tap-xunit --dontUseCommentsAsTestNames=true > test-results.xml",
"unit-inspect": "cross-env UI5_LOG_LVL=verbose node --inspect-brk node_modules/ava/profile.js",
"coverage": "nyc npm run unit",
"coverage-xunit": "nyc --reporter=text --reporter=text-summary --reporter=cobertura npm run unit-xunit",
"jsdoc": "npm run jsdoc-generate && open-cli jsdocs/index.html",
"jsdoc-generate": "node_modules/.bin/jsdoc -c ./jsdoc.json ./lib/ || (echo 'Error during JSDoc generation! Check log.' && exit 1)",
"jsdoc-watch": "npm run jsdoc && chokidar \"./lib/**/*.js\" -c \"npm run jsdoc-generate\"",
"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",
"report-coveralls": "nyc report --reporter=text-lcov | COVERALLS_PARALLEL=true coveralls"
},
"files": [
"index.js",
"CONTRIBUTING.md",
"jsdoc.json",
"lib/**"
],
"ava": {
"files": [
"test/lib/**/*.js"
],
"sources": [
"lib/**/*.js",
"lib/validation/schema/**/*.json",
"test/lib/**/*.js"
]
},
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"docs/**",
"jsdocs/**",
"coverage/**",
"test/**",
".eslintrc.js"
],
"check-coverage": true,
"statements": 85,
"branches": 75,
"functions": 85,
"lines": 85,
"watermarks": {
"statements": [
70,
90
],
"branches": [
70,
90
],
"functions": [
70,
90
],
"lines": [
70,
90
]
},
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "[email protected]:SAP/ui5-project.git"
},
"dependencies": {
"@ui5/builder": "^1.10.1",
"@ui5/logger": "^1.0.2",
"@ui5/server": "^1.6.0",
"ajv": "^6.12.0",
"ajv-errors": "^1.0.1",
"chalk": "^3.0.0",
"escape-string-regexp": "^2.0.0",
"graceful-fs": "^4.2.3",
"js-yaml": "^3.13.1",
"libnpmconfig": "^1.2.1",
"lockfile": "^1.0.4",
"mkdirp": "^1.0.3",
"pacote": "^11.1.4",
"pretty-hrtime": "^1.0.3",
"read-pkg": "^3.0.0",
"read-pkg-up": "^4.0.0",
"resolve": "^1.15.1",
"string.prototype.matchall": "^4.0.2"
},
"devDependencies": {
"ava": "^2.4.0",
"chokidar-cli": "^2.1.0",
"coveralls": "^3.0.11",
"cross-env": "^7.0.2",
"docdash": "^1.2.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^4.8.4",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-instrument": "^4.0.1",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.0",
"js-beautify": "^1.10.3",
"jsdoc": "^3.6.3",
"mock-require": "^3.0.3",
"nyc": "^15.0.0",
"open-cli": "^5.0.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.1",
"tap-nyan": "^1.1.0",
"tap-xunit": "^2.4.1"
}
}