generated from JoshMerlino/ts-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "async-require-context",
"version": "1.8.15",
"description": "A rewritten version of @wilsonlewis' require-context package that utilizes modern technologies.",
"main": "lib/esm",
"types": "lib/esm",
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"author": "Josh Merlino",
"license": "ISC",
"scripts": {
"watch-ts": "tsc -w",
"watch-js": "nodemon .",
"dev": "concurrently \"npm:watch-*\"",
"start": "node .",
"build": "tsc && tsc -p tsconfig.cjs.json",
"test": "jest",
"prepare": "npm run build; npm test"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"concurrently": "^9.0.0",
"eslint": "^7.32.0",
"jest": "^27.4.5",
"nodemon": "^3.0.1",
"ts-jest": "^27.1.2",
"typescript": "^5.1.3",
"typescript-eslint": "8.11.0"
},
"homepage": "https://github.com/JoshMerlino/async-require-context#readme",
"bugs": {
"url": "https://github.com/JoshMerlino/async-require-context/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JoshMerlino/async-require-context.git"
},
"keywords": [
"async",
"require",
"recursive",
"require-context"
]
}