-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 1.67 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
{
"name": "@redtea/react-inversify",
"version": "1.0.1",
"description": "Collection of decorators and hooks for interaction with InversifyJS container within React components",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "types/index.d.ts",
"sideEffects": true,
"files": [
"dist/",
"docs/",
"types/",
"README.md"
],
"scripts": {
"clean": "rm -rf esnext dist types",
"build-esnext": "yarn clean && tsc",
"build-dist": "yarn clean && tsc && rollup -c",
"test": "ts-mocha -p test/tsconfig.json 'test/**/*.spec.tsx' -colors",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/org-redtea/react-inversify.git"
},
"keywords": [
"react",
"inversify",
"ioc",
"di",
"hooks",
"library",
"decorators"
],
"author": "Kirill Khoroshilov <mr.hokid@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.11.0",
"@babel/preset-env": "7.11.0",
"@rollup/plugin-babel": "5.1.0",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "8.4.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.0",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-is": "16.7.1",
"chai": "^4.2.0",
"inversify": "^5.0.1",
"mocha": "6.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"reflect-metadata": "^0.1.13",
"rollup": "2.23.0",
"ts-mocha": "^7.0.0",
"typescript": "^3.9.7"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11"
]
}