-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "recontainer",
"version": "1.0.0",
"description": "Simple dependency injection for TypeScript and JavaScript React web applications.",
"main": "./lib/index.js",
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "rm -rf ./lib && tsc",
"release": "standard-version",
"prepublishOnly": "yarn build",
"test": "jest ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awinogrodzki/recontainer.git"
},
"keywords": [
"dependency injection",
"ioc",
"inversion of control",
"container",
"dependencies"
],
"author": "Amadeusz Winogrodzki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/awinogrodzki/recontainer/issues"
},
"homepage": "https://github.com/awinogrodzki/recontainer#readme",
"devDependencies": {
"@types/jest": "^26.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.5"
},
"dependencies": {},
"peerDependencies": {
}
}