-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "directory-validator",
"version": "1.5.4",
"description": "CLI Tool to validate directory structures.",
"main": "dist/index.js",
"bin": {
"directory-validator": "dist/index.js"
},
"scripts": {
"build": "npm run clean && tsc && cp src/resources/* dist/resources",
"clean": "rm -rf dist",
"prettier": "prettier -c .",
"test": "npm run prettier && jest"
},
"author": "Erwin Gaitan O <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"jest": "^29.7.0",
"prettier": "^2.5.1",
"ts-jest": "^29.1.4",
"typescript": "^4.5.5"
},
"dependencies": {
"ajv": "^8.0.2",
"colors": "1.4.0",
"commander": "^7.2.0",
"glob": "^7.1.6",
"goerwin-helpers": "^1.0.2",
"lodash": "^4.17.21"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/goerwin/directory-validator.git"
},
"keywords": [
"directory",
"validator",
"validation",
"folder"
],
"bugs": {
"url": "https://github.com/goerwin/directory-validator/issues"
},
"homepage": "https://github.com/goerwin/directory-validator#readme"
}