-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "fun-task",
"version": "1.5.2",
"description": "An abstraction for managing asynchronous code in JS",
"main": "lib/index.js",
"scripts": {
"lobot": "lobot",
"lint": "eslint .",
"test": "eslint . && flow check && lobot test",
"test:watch-fast": "IGNORE_SLOW_TESTS=1 lobot test watch",
"preversion": "cp src/index.js lib/index.js.flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpominov/fun-task.git"
},
"author": "Roman Pominov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpominov/fun-task/issues"
},
"homepage": "https://github.com/rpominov/fun-task#readme",
"devDependencies": {
"babel-core": "6.17.0",
"babel-eslint": "7.0.0",
"babel-polyfill": "6.16.0",
"eslint": "3.8.0",
"eslint-plugin-flowtype": "2.20.0",
"flow-bin": "0.33.0",
"lobot": "0.1.23"
},
"jsnext:main": "lib-es/index.js",
"files": [
"lib",
"lib-es",
"umd"
],
"dependencies": {
"fantasy-land": "1.0.1"
},
"keywords": [
"task",
"future",
"promise",
"monad",
"applicative",
"functor",
"fantasy-land",
"static-land",
"fantasy land",
"static land",
"fp",
"functional"
]
}