-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "node-injectable",
"version": "3.2.0",
"description": "Dependency injection for nodejs on steroids",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --verbose",
"test:cover": "jest --verbose --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/dkMorlok/node-injectable.git"
},
"keywords": [
"dependency",
"injection",
"anotations"
],
"author": "Dusan Kmet <morlokdk@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/dkMorlok/node-injectable",
"engines": {
"node": ">=6.0"
},
"dependencies": {
"caller": "^1.0.1",
"glob": "^7.1.6"
},
"devDependencies": {
"@types/caller": "^1.0.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.0",
"coveralls": "^3.0.11",
"jest": "^25.3.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}