This repository was archived by the owner on Mar 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.53 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
{
"name": "tornadodi",
"version": "1.2.4",
"description": "Easiest dependency injection system",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"DI",
"Dependencies",
"Dependency Injection",
"Lite Dependency Injection",
"Standalone DI",
"Standalone Dependency Injection",
"TS DI",
"TS Dependency Injection",
"TypeScript Dependency Injection",
"JS DI",
"JS Dependency Injection",
"Javascript Dependency Injection",
"DIY",
"Dependency Injectio Yourself",
"tornadoDI",
"tornadoDependencyInjection"
],
"scripts": {
"format": "prettier src/**/*.ts --write",
"build": "rm -rf dist && npm run format && tsc -p tsconfig.json",
"test": "jest --config=jest.json",
"test:cov": "jest --config=jest.json --coverage --coverageDirectory=coverage && cat ./coverage/lcov.info | coveralls",
"prepublish:npm": "npm run build && npm run test",
"publish:npm": "npm publish --public"
},
"author": {
"name": "Adrien de Peretti",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.1.5",
"@types/reflect-metadata": "^0.1.0",
"benchmark": "^2.1.4",
"coveralls": "^3.0.2",
"jest": "^23.3.0",
"prettier": "^1.13.7",
"reflect-metadata": "^0.1.12",
"ts-jest": "^23.0.0",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/reflect-metadata": "^0.1.0",
"@types/winston": "^2.3.9",
"reflect-metadata": "^0.1.12",
"winston": "^3.0.0"
}
}