-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "dynamic-file-loader",
"version": "1.1.2",
"description": "Require or import files of directory dynamically",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"test": "mocha --reporter spec test/index.js",
"build": "./node_modules/.bin/babel src --out-dir lib"
},
"keywords": [
"nodejs",
"files",
"require",
"import",
"dynamic",
"importer",
"loading"
],
"engines": {
"node": ">=4.9.1"
},
"author": "carboleda",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/carboleda/dynamic-file-loader.git"
},
"homepage": "https://github.com/carboleda/dynamic-file-loader#readme",
"bugs": {
"url": "https://github.com/carboleda/dynamic-file-loader/issues",
"email": "arbofercho@gmail.com"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"chai": "^4.2.0",
"mocha": "^6.1.4"
},
"dependencies": {
"@babel/runtime": "^7.4.5"
}
}