forked from zazoomauro/node-dependency-injection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.07 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "node-dependency-injection",
"version": "3.1.2",
"description": "The NodeDependencyInjection component allows you to standardize and centralize the way objects are constructed in your application.",
"main": "dist/lib/index.js",
"directories": {
"test": "test"
},
"preferGlobal": true,
"bin": {
"ndi": "dist/bin/ndi.js"
},
"scripts": {
"test": "cross-env NODE_ENV=test ts-mocha --paths",
"test:coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ts-mocha --paths",
"test:standard": "standard",
"test:standard:fix": "standard --fix",
"build:lib": "rm -rf dist/lib/* && babel lib -d dist/lib -D --compact --no-comments",
"build:bin": "rm -rf dist/bin/* && babel bin -d dist/bin -D --compact --no-comments",
"build": "npm run build:lib && npm run build:bin",
"report:coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"preversion": "npm run test:standard && npm test",
"postversion": "git push && git push --tags"
},
"standard": {
"ignore": [
"test/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zazoomauro/node-dependency-injection.git"
},
"keywords": [
"node",
"dependency",
"injection",
"service",
"container",
"console",
"inversion-of-control",
"service-locator"
],
"types": "dist/lib/types/index.d.ts",
"author": "Mauro Gadaleta <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazoomauro/node-dependency-injection/issues"
},
"homepage": "https://github.com/zazoomauro/node-dependency-injection#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/runtime": "^7.17.9",
"@typescript-eslint/typescript-estree": "^5.23.0",
"chalk": "^4.1.0",
"commander": "^8.3.0",
"console.table": "^0.10.0",
"js-yaml": "^4.0.0",
"json5": "^2.2.2",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/register": "^7.17.7",
"@types/chai": "^4.3.1",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.1",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-iterator": "^3.0.2",
"codecov": "^4.0.0-0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-sonarjs": "^0.13.0",
"istanbul": "^0.4.5",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"standard": "^16.0.4",
"ts-mocha": "^10.0.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/transform-runtime"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"false": {}
}