-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.64 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.64 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
{
"name": "tree2dir",
"version": "1.2.1",
"description": "",
"author": "Srinivas Gowda <srinivas@solancer.com>",
"license": "MIT",
"type": "module",
"main": "dist/lib.cjs",
"module": "dist/lib.js",
"types": "dist/lib.d.ts",
"bin": {
"tree2dir": "./dist/cli.cjs"
},
"exports": {
".": {
"require": "./dist/lib.cjs",
"import": "./dist/lib.js"
},
"./cli": {
"require": "./dist/cli.cjs",
"import": "./dist/cli.js"
}
},
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsup",
"start": "node dist/index.js",
"dev": "tsup --watch",
"test": "jest --config jest.config.cjs",
"test:coverage": "jest --config jest.config.cjs --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solancer/tree2dir.git"
},
"keywords": [
"tree2dir",
"tree2dir-cli",
"tree2dir-cli-tool",
"ascii",
"tree",
"directory",
"file",
"structure"
],
"bugs": {
"url": "https://github.com/solancer/tree2dir/issues"
},
"homepage": "https://github.com/solancer/tree2dir#readme",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
}
}