-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.77 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.77 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
70
71
{
"name": "node-modularity",
"version": "0.5.0",
"description": "A framework for modular JavaScript solutions.",
"engines": {
"node": ">=10"
},
"files": [
"lib/**/*.js",
"prefabs/*-module/*.js",
"prefabs/*-module/*.ts",
"index.js",
"index.d.ts"
],
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary node test.js",
"test": "node test.js | node node_modules/faucet/bin/cmd",
"watch:test": "nodemon --exec npm run test",
"watch:coverage": "nodemon --exec npm run coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"check-dts": "tsc -d --noEmit index.d.ts && tsc --noEmit tests/typescript/test.ts",
"docs": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json"
},
"respository": {
"type": "git",
"url": "git+https://github.com/walasek/node-modularity.git"
},
"keywords": [
"nodejs",
"framework",
"modules"
],
"author": "Karol Walasek <karol@walasek.ovh>",
"license": "MIT",
"bugs": {
"url": "https://github.com/walasek/node-modularity/issues"
},
"homepage": "https://github.com/walasek/node-modularity#readme",
"dependencies": {
"debug": "^4"
},
"resolutions": {
"@types/serve-static": "1.13.9"
},
"devDependencies": {
"@types/express": "^4",
"docdash": "^1",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-plugin-node": "^11",
"eslint-plugin-prettier": "^4",
"eslint-plugin-security": "^1",
"express": "^4",
"faucet": "^0.0.3",
"glob": "^8",
"jsdoc": "^3",
"mongoose": "^6",
"nodemon": "^2",
"nyc": "^15",
"prettier": "^2",
"sinon": "^14",
"supertest": "^6",
"typescript": "^4",
"zora": "^4"
},
"peerDependencies": {
"mongoose": "^6"
}
}