-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.05 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
{
"name": "node-auto-loader",
"version": "1.1.2",
"description": "Node Auto Loader provides a simple way to automatically load a directory of CommonJS (CJS) modules, ES6 (MJS) modules, and JSON files automatically.",
"main": "auto-loader.js",
"scripts": {
"test": "npx mocha ./test/run-all-tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caboodle-tech/node-auto-loader.git"
},
"keywords": [
"Node",
"Auto",
"Loader",
"Load",
"Require",
"Import",
"CommonJS",
"ES6",
"Module"
],
"author": "Christopher Keers <source[at]caboodle.tech>",
"contributors": [
"Caboodle Tech Inc (https://github.com/caboodle-tech)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/caboodle-tech/node-autoloader/issues"
},
"homepage": "https://github.com/caboodle-tech/node-autoloader#readme",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"mocha": "^9.1.2"
}
}