-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 908 Bytes
/
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
{
"name": "async-ls",
"version": "0.0.3",
"description": "Higher order functions, compositions and common operations for asynchronous programming in LiveScript using Promises or callbacks.",
"main": "lib/",
"files": [
"lib/",
"readme.md"
],
"dependencies": {
"prelude-ls": "~1.1.0",
"promise": "~4.0.0",
"inherits": "~2.0.1",
"setimmediate": "~1.0.1"
},
"devDependencies": {
"mocha": "~1.18.2",
"LiveScript": "~1.2.0",
"browserify": "*"
},
"scripts": {
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/homam/async-ls.git"
},
"keywords": [
"async",
"parallel",
"monad",
"promise"
],
"author": "Homam Hosseini (http://twitter.com/@homam)",
"license": "ISC",
"bugs": {
"url": "https://github.com/homam/async.ls/issues"
},
"homepage": "https://github.com/homam/async-ls"
}