-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "type-chef-di",
"version": "0.3.1",
"description": "dependency injection container.",
"main": "index.js",
"types": "build",
"keywords": [
"dependency-injection",
"di",
"container"
],
"scripts": {
"build": "tsc -p .",
"start": "ts-node-dev lib/app.ts",
"test": "jest --silent --verbose --coverage",
"local-publish": "rm -rf ./build && npm run generate-index && npm run build && cp *.json ./build && cp *.md ./build && npm publish ./build --registry http://localhost:4873/",
"npmjs-publish": "rm -rf ./build && npm run generate-index && npm run build && cp *.json ./build && cp *.md ./build && npm publish ./build",
"generate-index": "cti clean ./lib && cti create ./lib"
},
"author": "Maurer Krisztian",
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.23",
"@types/reflect-metadata": "^0.1.0",
"@types/uuid": "^8.3.0",
"create-ts-index": "^1.14.0",
"husky": "^8.0.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.52",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenZer0/type-chef-di.git"
},
"bugs": {
"url": "https://github.com/OpenZer0/type-chef-di/issues"
},
"homepage": "https://github.com/OpenZer0/type-chef-di#readme"
}