-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.32 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
{
"name": "@zouloux/files",
"version": "3.0.4",
"description": "",
"main": "./dist/index.es2017.cjs",
"module": "./dist/index.es2020.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"reset": "rm -rf node_modules && npm i",
"clean": "rm -rf dist",
"build": "tsbundle build",
"publish": "tsbundle publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zouloux/files.git"
},
"dependencies": {
"@zouloux/ecma-core": "^0.1.1",
"get-folder-size": "^3.1.0",
"glob": "^7.1.7",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"rimraf": "^3.0.2"
},
"optionalDependencies": {
"json5": "^2.2.0",
"yawn-yaml": "^1.5.0",
"stach": "^2.0.1"
},
"keywords": [
"solid",
"files",
"simple",
"directory",
"directories",
"json",
"yaml",
"management",
"easy"
],
"author": "Alexis Bouhet - ZoulouX",
"license": "MIT",
"bugs": {
"url": "https://github.com/zouloux/files/issues"
},
"homepage": "https://github.com/zouloux/files#readme",
"devDependencies": {
"@types/node": "^18.0.3",
"@zouloux/tsbundle": "^1.2.21"
},
"tsbundle": {
"files": [
{
"input": "./src/index.ts",
"output": "./dist/",
"formats": [
"es2020.mjs",
"es2017.cjs"
]
}
]
}
}