forked from cujojs/most
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.05 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
{
"name": "most",
"version": "0.17.1",
"description": "Monadic streams",
"main": "most.js",
"files": [
"most.js",
"lib/**/*.js"
],
"scripts": {
"test": "jshint . && buster-test",
"build": "webpack --output-library most --output-library-target umd ./most.js --output-file dist/most.js && uglifyjs dist/most.js -c 'warnings=false' -m -o dist/most.min.js",
"preversion": "npm run build"
},
"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": {
"buster": "~0.7",
"jshint": "~2",
"transducers-js": "^0.4.158",
"uglify-js": "^2.4.23",
"webpack": "^1.10.1"
},
"dependencies": {
"when": "^3.7.0"
}
}