-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "directory-import",
"version": "3.3.2",
"description": "Module will allow you to synchronously or asynchronously import (requires) all modules from the folder you specify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsup",
"start": "node dist/index.js",
"prepare": "npm run build",
"publish": "npm run prepare && npm publish",
"jest": "jest --silent test/index.test.ts",
"jest:watcher": "jest --watchAll",
"jest:windows": "jest --silent test-windows/index.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ANIname/directory-import.git"
},
"engines": {
"node": ">=18.17.0"
},
"keywords": [
"import",
"require",
"dir",
"directory",
"subdirectories",
"recursive",
"module",
"modules"
],
"author": "KiiDii <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ANIname/directory-import/issues"
},
"homepage": "https://github.com/ANIname/directory-import#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unicorn": "^49.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.2",
"typescript": "^5.2.2"
}
}