-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "stream-conversions",
"version": "0.3.0",
"description": "Convert between stream libraries",
"main": "lib/stream-conversions.js",
"scripts": {
"mocha": "mocha --compilers js:babel-core/register test",
"test-browser": "testem",
"test-ci": "testem ci",
"test": "npm run lib && npm run mocha",
"prelib": "rm -rf lib/",
"lib": "rollup -c rollup.lib.js",
"predist": "rm -rf dist/",
"dist": "rollup -c rollup.dist.js",
"postdist": "uglifyjs dist/stream-conversions.js --output dist/stream-conversions.min.js",
"prepublish": "npm run lib && npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylors/stream-conversions.git"
},
"keywords": [
"most",
"mostjs",
"rx",
"rxjs",
"stream",
"conversion"
],
"author": "Tylor Steinberger <tlsteinberger167@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tylors/stream-conversions/issues"
},
"homepage": "https://github.com/tylors/stream-conversions#readme",
"devDependencies": {
"assert": "^1.3.0",
"babel-core": "^6.4.0",
"babel-preset-es2015-rollup": "^1.0.0",
"babelify": "^7.2.0",
"browserify": "^12.0.2",
"mocha": "^2.3.4",
"rollup": "^0.24.1",
"rollup-plugin-babel": "^2.3.8",
"rollup-plugin-commonjs": "^2.1.0",
"rollup-plugin-npm": "^1.2.1",
"testem": "^0.9.11",
"uglify-js": "^2.6.1"
},
"dependencies": {
"baconjs": "^0.7.83",
"kefir": "^3.2.0",
"most": "^0.17.0",
"rx": "^4.0.7",
"xstream": "^1.1.1"
}
}