-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "require-directory-async",
"version": "1.0.3",
"description": "require a directory asynchronously",
"main": "index.js",
"typings": "global.d.ts",
"scripts": {
"build": "npx rollup -c",
"test": "npm run build && npx jest --clearCache && npx jest test/index.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pomelott/require-directory-async.git"
},
"keywords": [
"require",
"directory",
"async",
"ts",
"typescript"
],
"author": "pomelott",
"license": "MIT",
"bugs": {
"url": "https://github.com/pomelott/require-directory-async/issues"
},
"homepage": "https://github.com/pomelott/require-directory-async#readme",
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.17",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}