-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
111 lines (111 loc) · 2.49 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
108
109
110
111
{
"name": "react-ioc",
"version": "1.0.1",
"description": "Hierarchical Dependency Injection for React",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist/* && rollup -c && copyfiles -f src/index.d.ts src/index.js.flow dist --silent",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnaeus/react-ioc.git"
},
"keywords": [
"di",
"ioc",
"dependency",
"injection",
"container",
"inversion",
"hierarchical",
"decorators",
"react",
"mobx"
],
"author": "Dmitry Panyushkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/gnaeus/react-ioc/issues"
},
"homepage": "https://github.com/gnaeus/react-ioc#readme",
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/hoist-non-react-statics": "^3.0.1",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.2",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"classnames": "^2.2.6",
"copyfiles": "^2.1.0",
"coveralls": "^3.0.2",
"deepmerge": "^3.0.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"mobx": "^4.7.0",
"mobx-react": "^5.4.2",
"prettier": "^1.15.3",
"react": "next",
"react-dom": "next",
"rimraf": "^2.6.2",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-prettier": "^0.5.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-typescript2": "^0.22.1",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"reflect-metadata": "^0.1.13",
"tslib": "^1.10.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.js",
"src/*.ts"
],
"coverageReporters": [
"lcov",
"text"
],
"globals": {
"__DEV__": true
},
"transform": {
"^.+\\.(jsx?|tsx?)$": "ts-jest"
},
"testRegex": "/test/.+\\.test\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"js",
"ts",
"jsx",
"tsx"
]
}
}