forked from guatedude2/node-readfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "node-readfiles",
"version": "0.2.1",
"description": "A lightweight Node.js module to recursively read files in a directory using ES6 Promises",
"main": "lib/readfiles.js",
"scripts": {
"start": "echo 'Not a runnable module' && exit 1",
"test": "jest",
"build": "tsc",
"lint": "eslint src test",
"preversion": "npm run lint && npm test"
},
"keywords": [
"readfiles",
"read",
"readfile",
"readdir",
"dir",
"path",
"pattern",
"fs"
],
"author": "Alejandro Gonzalez Sole",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/guatedude2/node-readfiles.git"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {}
}