-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 889 Bytes
/
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
{
"name": "dimic",
"version": "1.0.0",
"description": "Node.js CLI to create pathmap index module from directory structure",
"main": "src/index.js",
"bin": {
"@pentamania/dimic": "bin/dimic",
"dimic": "bin/dimic"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"src/"
],
"scripts": {
"test": "jest"
},
"keywords": [
"cli"
],
"author": "pentamania",
"license": "MIT",
"dependencies": {
"arg": "^5.0.0",
"chokidar": "^3.5.1",
"esm": "^3.2.25",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-transform-modules-commonjs": "^7.12.13",
"@types/jest": "^26.0.20",
"@types/minimatch": "^3.0.3",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.25",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"mock-fs": "^4.13.0"
}
}