-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 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
{
"name": "@ui5/fs",
"version": "5.0.0-alpha.5",
"description": "UI5 CLI - File System Abstraction",
"author": {
"name": "SAP SE",
"email": "openui5@sap.com",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"build",
"development",
"tool"
],
"type": "module",
"exports": {
"./adapters/*": "./lib/adapters/*.js",
"./AbstractReader": "./lib/AbstractReader.js",
"./AbstractReaderWriter": "./lib/AbstractReaderWriter.js",
"./DuplexCollection": "./lib/DuplexCollection.js",
"./fsInterface": "./lib/fsInterface.js",
"./readers/*": "./lib/readers/*.js",
"./ReaderCollection": "./lib/ReaderCollection.js",
"./ReaderCollectionPrioritized": "./lib/ReaderCollectionPrioritized.js",
"./Resource": "./lib/Resource.js",
"./resourceFactory": "./lib/resourceFactory.js",
"./package.json": "./package.json",
"./internal/ResourceTagCollection": "./lib/ResourceTagCollection.js"
},
"engines": {
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
"test": "npm run lint && npm run coverage",
"lint": "eslint ./",
"unit": "rimraf test/tmp && ava",
"unit-verbose": "rimraf test/tmp && cross-env UI5_LOG_LVL=verbose ava --verbose --serial",
"unit-watch": "npm run unit -- --watch",
"unit-inspect": "cross-env UI5_LOG_LVL=verbose ava debug --break",
"coverage": "rimraf test/tmp && nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\""
},
"files": [
"CHANGELOG.md",
"lib/**",
"LICENSES/**"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/UI5/cli.git",
"directory": "packages/fs"
},
"dependencies": {
"@ui5/logger": "^5.0.0-alpha.5",
"clone": "^2.1.2",
"escape-string-regexp": "^5.0.0",
"globby": "^15.0.0",
"graceful-fs": "^4.2.11",
"micromatch": "^4.0.8",
"minimatch": "^10.2.2",
"pretty-hrtime": "^1.0.3",
"random-int": "^3.1.0"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.3.0",
"ava": "^6.4.1",
"cross-env": "^10.1.0",
"eslint": "^9.36.0",
"esmock": "^2.7.3",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"sinon": "^21.0.0"
}
}