-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.48 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
{
"name": "@jswork/fileutils",
"version": "1.0.8",
"description": "File and directory utilities for node.js.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "gulp",
"test": "jest",
"release": "release-it"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@jswork/gulp-pkg-header": "^1.0.8",
"@jswork/gulp-registry": "^1.0.21",
"@jswork/next": "^1.1.5",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"babel-jest": "^29.5.0",
"del": "^6.0.0",
"esbuild": "^0.17.12",
"esbuild-node-externals": "^1.6.0",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-plugin-replace": "^1.3.0",
"gulp": "^4.0.2",
"gulp-esbuild": "^0.11.1",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^29.5.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"boilerplate": "generator-typescript",
"homepage": "https://js.work",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"keywords": [
"file",
"fs",
"node",
"nodejs",
"utils",
"fu"
],
"dependencies": {
"fast-glob": "^3.3.1"
}
}