-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 1.92 KB
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
{
"name": "react.di",
"version": "2.0.2",
"description": "Dependency injection for react",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "tsc",
"cover": "nyc mocha",
"lint": "tslint 'src/**/*.ts' 'src/**/*.tsx'",
"pretest": "tsc --project test",
"test": "mocha"
},
"nyc": {
"lines": 85,
"statements": 85,
"functions": 85,
"branches": 85,
"include": [
"lib/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"cache": false,
"all": true,
"check-coverage": true,
"report-dir": "./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinBuschmann/react.di.git"
},
"keywords": [
"react",
"di",
"dependency",
"injection",
"modules"
],
"author": "Robin Buschmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobinBuschmann/react.di/issues"
},
"homepage": "https://github.com/RobinBuschmann/react.di#readme",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/enzyme": "^3.1.3",
"@types/mocha": "^2.2.44",
"@types/react": "^16.0.19",
"@types/sinon": "^2.3.7",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"codecov": "^3.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"jsdom": "^11.3.0",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-test-renderer": "^16.0.0",
"reflect-metadata": "^0.1.10",
"sinon": "^4.1.1",
"sinon-chai": "^2.14.0",
"source-map-support": "^0.4.14",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
},
"dependencies": {
"inversify": "^4.5.0",
"prop-types": "^15.6.0"
}
}