forked from zazoomauro/node-dependency-injection
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.31 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "neoleo-node-dependency-injection",
"version": "1.0.1",
"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 mocha",
"test:coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha",
"test:standard": "standard",
"test:standard:fix": "standard --fix",
"build:lib": "rm -rf dist/lib/* && babel lib -d dist/lib -D",
"build:bin": "rm -rf dist/bin/* && babel bin -d dist/bin -D",
"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",
"version": "npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/progmer/node-dependency-injection.git"
},
"keywords": [
"node",
"dependency",
"injection",
"service",
"container",
"console",
"inversion-of-control",
"service-locator"
],
"author": "Mauro Gadaleta <mggadaleta@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazoomauro/node-dependency-injection/issues"
},
"homepage": "https://github.com/zazoomauro/node-dependency-injection#readme",
"dependencies": {
"chalk": "^2.1.0",
"collections": "^5.0.7",
"commander": "^2.11.0",
"console.table": "^0.10.0",
"fs-extra": "^6.0.1",
"js-yaml": "^3.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"codecov": "^4.0.0-0",
"cross-env": "^5.0.5",
"istanbul": "^0.4.5",
"mocha": "^5.0.1",
"nodemon": "^1.17.5",
"nyc": "^13.0.0",
"path": "^0.12.7",
"sinon": "^6.0.0",
"standard": "^11.0.1"
},
"babel": {
"presets": [
"env"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"false": {}
}