forked from fshost/node-dir
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "path-reader",
"version": "2.0.2",
"description": "asynchronous file and directory operations for Node.js",
"main": "lib/index",
"typings": "lib/index.d.ts",
"homepage": "https://github.com/ackerapple",
"repository": "https://github.com/ackerapple/path-reader",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "rm -rf lib && tsc --project ./ts/tsconfig.json",
"test": "./node_modules/.bin/mocha --reporter spec",
"version:patch": "npm --no-git-tag-version version patch",
"save": "npm run build && npm run test && npm run version:patch && git add . && git commit -m \"update\" && git push",
"deploy": "npm run save && npm publish"
},
"engines": {
"node": ">= 0.10.5"
},
"license": "MIT",
"keywords": [
"path-reader",
"directory",
"dir",
"subdir",
"file",
"asynchronous",
"Node.js",
"fs"
],
"dependencies": {
"minimatch": "^3.0.4"
},
"optionalDependencies": {
"@types/node": "^18.0.0"
},
"devDependencies": {
"mocha": "3.5.0",
"should": "11.2.1",
"typescript": "^4.7.3"
}
}