-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 860 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
{
"name": "sfuture",
"version": "1.0.1",
"description": "JavaScript port of Scala Future",
"author": "Seulgi Kim <[email protected]>",
"contributors": [
{
"name": "Seulgi Kim",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sgkim126/sfuture/"
},
"bugs": {
"url": "https://github.com/sgkim126/sfuture/issues"
},
"main": "./src/future.js",
"devDependencies": {
"istanbul": "latest",
"jsdoc": "latest",
"mocha": "latest",
"tsdoc": ">=0.0.3",
"tslint": "latest",
"typescript": "latest"
},
"scripts": {
"test": "make lint && make cover",
"prepublish": "make build"
},
"engines": {
"iojs": ">=1.0.0",
"node": ">=0.12"
},
"license": "MIT",
"keywords": [ "future", "promise", "scala", "control flow", "concurrency" ]
}