-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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": "@chrissong/asyncfiles",
"version": "0.0.1-alpha.2",
"description": "async files ",
"main": "lib/index.js",
"typings": "./lib/index.d.ts",
"bin": {
"afs": "./bin/asyncFiles.js",
"asyncFiles": "./bin/asyncFiles.js"
},
"scripts": {
"dev": "tsc -p tsconfig.json --watch --sourceMap",
"build": "rimraf lib && tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/song111/AsyncFiles.git"
},
"keywords": [
"node",
"async",
"files"
],
"author": "chrissong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/song111/AsyncFiles/issues"
},
"homepage": "https://github.com/song111/AsyncFiles#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.6.4",
"@types/rimraf": "^3.0.0",
"jest": "^26.4.2",
"typescript": "^4.0.2"
},
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"fs-extra": "^9.0.1",
"md5": "^2.3.0",
"rimraf": "^3.0.2",
"yargs": "^16.0.3"
}
}