-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 KB
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": "module-indexgen",
"version": "0.47.0",
"description": "Generates barrel (index.js) files that rollup exports for each module in a directory and re-exports them as a single module.",
"license": "ISC",
"homepage": "https://github.com/mattriley/node-module-indexgen",
"repository": "github:mattriley/node-module-indexgen",
"author": {
"name": "Matt Riley",
"email": "[email protected]",
"url": "https://github.com/mattriley"
},
"bugs": {
"url": "https://github.com/mattriley/node-module-indexgen/issues",
"email": "[email protected]"
},
"bin": {
"indexgen": "./bin/indexgen.js"
},
"files": [
"src/**/*",
"bin/**/*"
],
"main": "src/compose.js",
"scripts": {
"cov": "npx task cov",
"deploy": "npx task deploy",
"lint": "npx task lint",
"pre": "npx task pre",
"setup": "npm i && npx task setup",
"start": "npx task start",
"test": "npx task test"
},
"dependencies": {
"fast-glob": "^3.3.3",
"lodash.camelcase": "^4.3.0",
"minimist": "^1.2.8",
"module-composer": "*"
},
"devDependencies": {
"c8": "^10.1.3",
"chokidar-cli": "^3.0.0",
"cloc": "^2.11.0",
"doctoc": "^2.2.1",
"ejs": "^3.1.10",
"eslint": "^9.36.0",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"module-testrunner": "*",
"npm-check-updates": "^18.3.0",
"task-library": "*"
},
"publishConfig": {
"access": "public"
}
}