-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
45 lines (45 loc) · 925 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
41
42
43
44
45
{
"name": "continuation",
"version": "0.1.7",
"description": "Continuation.js is a compiler for asynchronous JavaScript Continuation-Passing style transformation",
"author": "BYVoid",
"license": "BSD",
"main": "continuation.js",
"bin": {
"continuation": "./bin/continuation"
},
"directories": {
"lib": "lib",
"bin": "bin",
"test": "test"
},
"scripts": {
"test": "mocha -R spec"
},
"repository": {
"type": "git",
"url": "git://github.com/BYVoid/continuation.git"
},
"preferGlobal": true,
"bugs": {
"url": "https://github.com/BYVoid/continuation/issues"
},
"keywords": [
"compiler",
"continuation",
"async",
"cps",
"monad",
"coffeescript",
"livescript"
],
"dependencies": {
"esprima": "1.2.5",
"escodegen": "1.6.1",
"commander": "2.6.0",
"mkdirp": "0.5.0"
},
"devDependencies": {
"mocha": "2.1.0"
}
}