-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "tree-extended",
"version": "4.6.0",
"description": "Helper library and tool for getting customized directory tree representation.",
"main": "./dist/index.js",
"scripts": {
"build": "webpack --config webpack.config.js & npx tsc",
"test-local": "jest --watchAll --coverage",
"test": "jest --coverage",
"eslint": "eslint src"
},
"bin": {
"tree-extended": "./bin/index.js"
},
"keywords": [
"tree",
"extend",
"deep",
"directory",
"maps",
"map",
"directory map",
"path map",
"directory tree",
"ascii",
"gitignore"
],
"repository": {
"type": "git",
"url": "https://github.com/rulyotano/tree-extended.git"
},
"author": "Raúl Otaño Hurtado",
"license": "ISC",
"dependencies": {
"gitignore-parser": "0.0.2"
},
"devDependencies": {
"@types/gitignore-parser": "^0.0.0",
"@types/jest": "^27.4.1",
"@types/mock-fs": "^4.13.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.2",
"jest": "^27.5.1",
"mock-fs": "^5.1.2",
"source-map-loader": "^3.0.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}