forked from microsoft/ReSub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 999 Bytes
/
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
{
"name": "resub",
"version": "0.0.12",
"description": "A library for writing React components that automatically manage subscriptions to data sources simply by accessing them.",
"author": "David de Regt <[email protected]>",
"scripts": {
"prepublish": "tsc",
"webtestbuild": "webpack",
"build": "tsc"
},
"dependencies": {
"assert": "^1.4.1",
"lodash": "3.x || 4.x"
},
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"mocha": "^2.3.4",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"ts-loader": "^0.8.2",
"typescript": "2.1.4",
"webpack": "^1.12.14"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/ReSub"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/Microsoft/ReSub/issues"
},
"keywords": [
"react",
"flux",
"automatic",
"subscriptions",
"stores"
],
"license": "MIT",
"types": "dist/src/ReSub.d.ts"
}