-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 1.39 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
{
"name": "dir-to-json",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"description": "Asynchronously convert directory tree structure into a javascript object.",
"keywords": [
"directory",
"dir",
"tree",
"object",
"files",
"json",
"path",
"traversal",
"walk",
"asynchronous"
],
"dependencies": {},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tsup": "^6.1.3",
"typescript": "^4.7.4"
},
"exports": {
".": {
"import": "./entry/index.js",
"require": "./entry/index.cjs"
},
"./callback": {
"import": "./entry/callback.js",
"require": "./entry/callback.cjs"
}
},
"typesVersions": {
"*": {
"callback": [
"dist/callback.d.ts"
]
}
},
"types": "dist/main.d.ts",
"files": [
"/entry/",
"/dist/"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsup",
"test": "jest --coverage --watchAll",
"ci_test": "jest --coverage --ci",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/traviswimer/dir-to-json.git"
},
"bugs": {
"url": "https://github.com/traviswimer/dir-to-json/issues"
},
"homepage": "https://github.com/traviswimer/dir-to-json",
"contributors": [
{
"name": "Travis Wimer",
"url": "https://traviswimer.com"
}
]
}