forked from cujojs/most
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
{
"name": "most",
"version": "0.19.7",
"description": "Monadic streams",
"typings": "type-definitions/most.d.ts",
"main": "most.js",
"files": [
"most.js",
"lib/**/*.js",
"type-definitions/*"
],
"scripts": {
"unit-test": "buster-test",
"test": "eslint . && npm run unit-test && npm run doctest",
"build": "webpack --output-library most --output-library-target umd ./most.js --output-filename dist/most.js && uglifyjs dist/most.js -c \"warnings=false\" -m -o dist/most.min.js",
"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": "[email protected]",
"license": "MIT",
"devDependencies": {
"@most/hold": "^1.2.0",
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"buster": "^0.8.0",
"eslint": "^3.0.0",
"markdown-doctest": "^0.8.0",
"transducers-js": "^0.4.174",
"uglify-js": "^2.4.23",
"webpack": "^1.12.14"
},
"dependencies": {
"@most/multicast": "^1.1.1",
"@most/prelude": "^1.2.0",
"symbol-observable": "^1.0.0"
}
}