forked from SAP/ui5-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.09 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
{
"name": "@ui5/tooling",
"private": true,
"version": "0.0.1",
"description": "UI5 Build and Development Tooling - Main Repository",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"build",
"development",
"tool"
],
"engines": {
"node": ">= 8.3",
"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 --inspect-brk node_modules/ava/profile.js",
"coverage": "nyc npm run unit",
"jsdoc": "npm run jsdoc-generate && opn jsdocs/index.html",
"jsdoc-generate": "node_modules/.bin/jsdoc -c ./jsdoc.json ./node_modules/@ui5/ || (echo 'Error during JSDoc generation! Check log.' && exit 1)"
},
"ava": {
"files": [
"test/lib/**/*.js"
],
"source": [
"lib/**/*.js",
"test/lib/**/*.js"
]
},
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"docs/**",
"jsdocs/**",
"coverage/**",
"test/**",
"lib/lbt/**"
],
"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-tooling.git"
},
"dependencies": {},
"devDependencies": {
"@ui5/fs": "SAP/ui5-fs",
"@ui5/logger": "SAP/ui5-logger",
"@ui5/builder": "SAP/ui5-builder",
"@ui5/project": "SAP/ui5-project",
"@ui5/server": "SAP/ui5-server",
"ava": "^0.24.0",
"docdash": "^0.4.0",
"eslint": "^4.13.1",
"eslint-config-google": "^0.9.1",
"jsdoc": "^3.5.5",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"supertest": "^3.0.0",
"opn-cli": "^3.1.0",
"tap-nyan": "^1.1.0"
}
}