-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "spawnpoint",
"version": "2.2.1",
"description": "Agnostic JS framework that empowers devs to focus on quickly building apps, rather than focusing on application config, health-checks, application structure, or architecture to build a 12 factor app in Docker.",
"keywords": [
"app",
"spawnpoint",
"framework",
"events",
"errors",
"docker",
"graceful",
"shutdown",
"sigint",
"sigkill",
"infrastructure",
"structure",
"config",
"management",
"folders",
"auto",
"include"
],
"homepage": "https://github.com/nodecraft/spawnpoint",
"bugs": {
"url": "https://github.com/nodecraft/spawnpoint/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nodecraft/spawnpoint"
},
"license": "MIT",
"author": "Nodecraft, Inc.",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=lcov",
"docs": "jsdoc2md lib/spawnpoint.js > docs.md",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"mocha": "mocha",
"nyc": "nyc mocha",
"precommit": "lint",
"test": "npm run lint && npm run nyc"
},
"dependencies": {
"async": "^2.6.4",
"dayjs": "^1.11.11",
"json-lint": "^0.1.0",
"kleur": "^4.1.5",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"nanoid": "^3.3.7",
"string-template": "^1.0.0",
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"@nodecraft/eslint-config": "^35.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^52.0.0",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"unexpected": "^13.2.1",
"unexpected-eventemitter": "^2.4.0"
},
"engines": {
"node": ">=18",
"npm": ">=8"
}
}