-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.75 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "func-di",
"version": "1.4.7",
"description": "A functional, immutable, type safe and simple dependency injection library inspired by angular.",
"main": "dist/index.js",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "npm run build:typescript && npm run build:browser",
"build:typescript": "tsc",
"build:browser": "npx rollup --config rollup.config.js",
"format": "prettier --write .",
"start": "tsc -w",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/DarrenDanielDay/func-di.git"
},
"keywords": [
"di",
"dependency injection",
"functional",
"ioc",
"inversion of control container",
"javascript",
"typescript"
],
"author": {
"email": "Darren_Daniel_Day@hotmail.com",
"name": "Darren Daniel Day",
"url": "https://github.com/DarrenDanielDay"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DarrenDanielDay/func-di/issues"
},
"homepage": "https://github.com/DarrenDanielDay/func-di#readme",
"files": [
"tsconfig.json",
"dist",
"src"
],
"peerDependencies": {
"@types/react": ">=16.8",
"@types/react-dom": ">=16.8",
"react": ">=16.8",
"react-dom": ">=16.8"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.browser.esm.min.js",
"node": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"browser": "./dist/react.browser.esm.min.js",
"node": "./dist/react.js",
"import": "./dist/react.js",
"default": "./dist/react.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"browser": "./dist/hooks.browser.esm.min.js",
"node": "./dist/hooks.js",
"import": "./dist/hooks.js",
"default": "./dist/hooks.js"
}
},
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.1",
"@types/node": "^18.7.17",
"@types/prop-types": "^15.7.5",
"esbuild": "^0.15.7",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"ts-esmbuilder": "^0.1.4",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}