UNPKG

925 BJSONView Raw
1{
2 "name": "continuation",
3 "version": "0.1.7",
4 "description": "Continuation.js is a compiler for asynchronous JavaScript Continuation-Passing style transformation",
5 "author": "BYVoid",
6 "license": "BSD",
7 "main": "continuation.js",
8 "bin": {
9 "continuation": "./bin/continuation"
10 },
11 "directories": {
12 "lib": "lib",
13 "bin": "bin",
14 "test": "test"
15 },
16 "scripts": {
17 "test": "mocha -R spec"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git://github.com/BYVoid/continuation.git"
22 },
23 "preferGlobal": true,
24 "bugs": {
25 "url": "https://github.com/BYVoid/continuation/issues"
26 },
27 "keywords": [
28 "compiler",
29 "continuation",
30 "async",
31 "cps",
32 "monad",
33 "coffeescript",
34 "livescript"
35 ],
36 "dependencies": {
37 "esprima": "1.2.5",
38 "escodegen": "1.6.1",
39 "commander": "2.6.0",
40 "mkdirp": "0.5.0"
41 },
42 "devDependencies": {
43 "mocha": "2.1.0"
44 }
45}