-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.97 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
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": "module-composer",
"version": "0.174.0",
"description": "Bring order to chaos. Level up your JS application architecture with Module Composer, a tiny but powerful module composition utility based on functional dependency injection.",
"license": "ISC",
"homepage": "https://github.com/mattriley/node-module-composer",
"repository": "github:mattriley/node-module-composer",
"author": {
"name": "Matt Riley",
"email": "m@ttriley.dev",
"url": "https://github.com/mattriley"
},
"bugs": {
"url": "https://github.com/mattriley/node-module-composer/issues",
"email": "m@ttriley.dev"
},
"files": [
"core.js",
"main.js",
"src/**/*",
"extensions/*"
],
"main": "./main.js",
"scripts": {
"cov": "npx task cov",
"deploy": "npx task deploy",
"lint": "npx task lint",
"pre": "npx task pre",
"setup": "npm i && npx task setup",
"start": "npx task start",
"test": "npx task test"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"cloc": "^2.11.0",
"doctoc": "^2.2.1",
"ejs": "^3.1.10",
"eslint": "^9.36.0",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"module-indexgen": "*",
"module-testrunner": "*",
"node-sloc": "^0.2.1",
"npm-check-updates": "^18.3.0",
"task-library": "*",
"testing": "file:./testing"
},
"keywords": [
"application-architecture",
"software-design",
"modular-design",
"module-composition",
"composition-root",
"dependency-inversion",
"dependency-injection",
"functional-dependency-injection",
"higher-order-functions",
"stateful-functions",
"closures",
"fitness-functions",
"mermaid",
"small",
"fast",
"browser",
"ejectable"
]
}