-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "@structure-codes/cli",
"version": "0.0.6",
"description": "cli tool for generating directory structure from a .tree file",
"bin": {
"struct": "dist/index.js"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"build": "tsc",
"test": "jest",
"dev": "tsc -watch -p ."
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/structure-codes/cli.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/structure-codes/cli/issues"
},
"homepage": "https://github.com/structure-codes/cli#readme",
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/inquirer": "^8.2.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@structure-codes/is-nondot": "^1.1.2",
"@structure-codes/utils": "^0.0.3",
"commander": "^8.3.0",
"glob": "^7.2.0",
"inquirer": "^8.2.0"
}
}