-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.03 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.03 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
{
"name": "path-nice",
"version": "2.0.6",
"license": "MIT",
"description": "The elegant and handy alternative to path, fs and glob",
"homepage": "https://github.com/FuuuOverclocking/path-nice",
"repository": {
"type": "git",
"url": "https://github.com/FuuuOverclocking/path-nice"
},
"author": {
"email": "g.for.xyz@gmail.com",
"name": "Fuu"
},
"engines": {
"node": ">=12"
},
"main": "See ./release/package.json",
"module": "See ./release/package.json",
"exports": "See ./release/package.json",
"files": "See ./release/package.json",
"scripts": {
"build": "node ./scripts/build.js",
"test": "jest && node ./scripts/gen-coverage-badge.js",
"cz": "cz",
"docs": "node ./scripts/gen-docs.js",
"gen-release": "node ./scripts/gen-release.js",
"release": "node ./scripts/release.js"
},
"dependencies": {
"@types/node": "^16",
"chokidar": "^3.5.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.4",
"chalk": "^4.1.2",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "3.3.0",
"fs-extra": "^10.1.0",
"jest": "^28.1.2",
"memfs": "^3.4.7",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typedoc": "^0.23.5",
"typescript": "^4.7.4"
},
"sideEffects": false,
"keywords": [
"path",
"fs",
"file",
"file system",
"extra",
"glob",
"copy",
"directory",
"extra",
"mkdirp",
"mkdir",
"mkdirs",
"recursive",
"json",
"read",
"write",
"delete",
"remove",
"touch",
"create",
"text",
"output",
"move",
"promise"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}