-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 1.67 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": "systemic",
"version": "4.1.2",
"description": "A minimal dependency injection library for node",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "zUnit",
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"prepare": "husky install",
"release:prerelease": "npm run release -- prerelease"
},
"keywords": [
"dependency",
"injection",
"context",
"inversion of control",
"graceful",
"start up",
"shutdown",
"ioc",
"boot"
],
"author": "GuideSmiths Ltd",
"license": "MIT",
"devDependencies": {
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"zunit": "^3.2.1"
},
"dependencies": {
"async": "^3.2.3",
"debug": "^4.3.4",
"require-all": "^3.0.0",
"toposort-class": "^1.0.1"
},
"directories": {
"example": "examples"
},
"engines": {
"node": ">=12.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.js": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/systemic.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/systemic/issues"
},
"homepage": "https://guidesmiths.github.io/systemic/",
"husky": {
"hooks": {
"pre-commit": "npm run qa"
}
},
"zUnit": {
"pollute": true
}
}