forked from cujojs/most
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.79 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
{
"name": "most",
"version": "1.7.2",
"description": "Monadic streams",
"typings": "type-definitions/most.d.ts",
"main": "lib/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"files": [
"src",
"lib",
"type-definitions",
"dist"
],
"scripts": {
"test:unit": "buster-test",
"test": "eslint test/flow src test && flow check && npm run test:unit && npm run doctest",
"build": "npm run build:dist && npm run build:min && npm run build:flow",
"build:dist": "rimraf lib dist && buba src -o lib && rollup -c",
"build:min": "uglifyjs dist/most.js -c \"warnings=false\" -m > dist/most.min.js",
"build:flow": "cpy src/index.js.flow lib",
"preversion": "npm run build",
"doctest": "markdown-doctest"
},
"repository": {
"type": "git",
"url": "https://github.com/cujojs/most"
},
"keywords": [
"reactive",
"reactive programming",
"reactive streams",
"stream",
"streams",
"event stream",
"promise",
"promises",
"promises-aplus",
"fantasy-land",
"monad",
"monadic",
"functional",
"async",
"cujojs",
"cujo"
],
"author": "brian@hovercraftstudios.com",
"license": "MIT",
"devDependencies": {
"@most/eslint-config-most": "^1.0.3",
"@most/hold": "^2.0.0",
"babel-polyfill": "^6.20.0",
"buba": "^4.0.1",
"buster": "^0.7.18",
"cpy-cli": "^1.0.1",
"eslint": "^3.12.1",
"flow-bin": "^0.54.1",
"markdown-doctest": "^0.9.1",
"rimraf": "^2.5.4",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-node-resolve": "^3.0.0",
"transducers-js": "^0.4.174",
"uglify-js": "^3.0.11"
},
"dependencies": {
"@most/multicast": "^1.2.5",
"@most/prelude": "^1.4.0",
"symbol-observable": "^1.0.2"
}
}