-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.46 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
{
"name": "component-from-stream",
"version": "0.17.2",
"description": "lightweight (1kb gz) component-from-stream on steroids: create a React-like component from any React-compatible library, that sources its props from an observable stream and supports middleware.",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"predist": "mkdirp dist && rimraf dist/*",
"dist": "tsc -p src --outDir dist",
"postdist": "npm run uglify",
"example": "npm run example:bundle && npm run symbol-observable-polyfill && npm run example:serve",
"preexample:bundle": "rimraf example/*.js && npm run dist",
"example:bundle": "browserify example/index.tsx -p [ tsify --project example ] -g uglifyify -p bundle-collapser/plugin -p [ common-shakeify -v ] | uglifyjs -c -m toplevel -o example/index.js",
"example:serve": "http-server -c-1 -i -e html -o -p 6510 example",
"prepublish": "npm run dist",
"symbol-observable-polyfill": "browserify -r symbol-observable --standalone symbol-observable -g uglifyify -p bundle-collapser/plugin -p [ common-shakeify -v ] | uglifyjs -c -m > example/symbol-observable.js",
"test": "echo \"Error: no test specified\" && exit 1",
"uglify": "uglifyjs dist/index.js -c -m toplevel -o dist/index.min.js"
},
"keywords": [
"recompose",
"observable",
"stream",
"react",
"preact",
"inferno",
"redux",
"reducer",
"redux-observable",
"epic",
"effect",
"stateless"
],
"author": {
"name": "Stephane M. Catala",
"email": "stephane@zenyway.com"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/zenyway/component-from-stream.git"
},
"bugs": {
"url": "https://github.com/zenyway/component-from-stream/issues"
},
"homepage": "https://github.com/zenyway/component-from-stream#readme",
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"basic-compose": "^4.0.1",
"basic-cursors": "^2.2.0",
"browserify": "^16.2.2",
"bundle-collapser": "^1.3.0",
"clipboard-copy": "^2.0.1",
"common-shakeify": "^0.4.6",
"http-server": "^0.11.1",
"inferno": "^5.6.1",
"inferno-create-element": "^5.6.1",
"rimraf": "^2.6.2",
"rxjs": "^6.3.2",
"symbol-observable": "^1.2.0",
"tsify": "^4.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"uglify-es": "^3.3.9",
"uglifyify": "^5.0.1"
},
"dependencies": {
"rx-subject": "^3.1.0"
}
}