forked from SAP/ui5-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 2.83 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
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
{
"name": "@ui5/server",
"version": "0.2.1",
"description": "UI5 Build and Development Tooling - Server",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"build",
"development",
"tool"
],
"main": "index.js",
"engines": {
"node": ">= 8.5",
"npm": ">= 5"
},
"scripts": {
"test": "npm run lint && npm run jsdoc-generate && npm run coverage",
"lint": "eslint ./",
"unit": "rimraf test/tmp && ava",
"unit-watch": "rimraf test/tmp && ava --watch",
"unit-nyan": "npm run unit -- --tap | tnyan",
"unit-debug": "rimraf test/tmp && cross-env DEBUG=*,-babel,-ava ava",
"unit-inspect": "cross-env DEBUG=*,-babel,-ava node $NODE_DEBUG_OPTION --inspect-brk node_modules/ava/profile.js ./test/lib/server.js",
"coverage": "nyc npm run unit",
"jsdoc": "npm run jsdoc-generate && opn jsdocs/index.html",
"jsdoc-generate": "node_modules/.bin/jsdoc -c ./jsdoc.json ./lib/ || (echo 'Error during JSDoc generation! Check log.' && exit 1)",
"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"
},
"files": [
"index.js",
"CONTRIBUTING.md",
"jsdoc.json",
"lib/**"
],
"ava": {
"files": [
"test/lib/**/*.js"
],
"source": [
"lib/**/*.js",
"test/lib/**/*.js"
]
},
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"docs/**",
"jsdocs/**",
"coverage/**",
"test/**"
],
"check-coverage": true,
"lines": 70,
"statements": 70,
"functions": 60,
"branches": 50,
"watermarks": {
"lines": [
70,
90
],
"functions": [
60,
90
],
"branches": [
50,
70
],
"statements": [
70,
90
]
},
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "git@github.com:SAP/ui5-server.git"
},
"dependencies": {
"@ui5/builder": "^0.2.0",
"@ui5/fs": "^0.2.0",
"@ui5/logger": "^0.2.0",
"@ui5/project": "^0.2.0",
"compression": "^1.7.1",
"connect-openui5": "^0.7.2",
"cors": "^2.8.3",
"devcert-sanscache": "^0.4.5",
"etag": "^1.8.1",
"express": "^4.16.2",
"fresh": "^0.5.2",
"http-proxy": "^1.12.0",
"make-dir": "^1.1.0",
"mime-types": "^2.1.17",
"portscanner": "^2.1.1",
"prompt": "^1.0.0",
"replacestream": "^4.0.3",
"spdy": "^3.4.7",
"treeify": "^1.0.1"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.1",
"cross-env": "^5.1.1",
"docdash": "^0.4.0",
"eslint": "^5.0.1",
"eslint-config-google": "^0.9.1",
"jsdoc": "^3.5.5",
"nyc": "^12.0.2",
"opn-cli": "^3.1.0",
"rimraf": "^2.6.2",
"supertest": "^3.0.0",
"tap-nyan": "^1.1.0"
}
}