UNPKG

1.26 kBJSONView Raw
1{
2 "version": "1.7.10",
3 "name": "tiny-cps",
4 "description": "Tiny goodies for Continuation-Passing-Style functions",
5 "main": "index.js",
6 "files": "index.js",
7 "repository": "https://github.com/dmitriz/tiny-cps.git",
8 "author": "Dmitri Zaitsev <dmitri14@gmail.com> (https://github.com/dmitriz)",
9 "license": "MIT",
10 "scripts": {
11 "start": "npm version",
12 "preversion": "npm test",
13 "postversion": "npm publish",
14 "postpublish": "git pull --rebase && git push origin --all; git push origin --tags",
15 "test": "nyc ava test/*test.js",
16 "watch": "nyc ava test/*test.js -w",
17 "tape": "tape test/*test.js",
18 "tap": "tap test/*test.js",
19 "sync": "git ac && git pull --rebase && git push",
20 "cov": "nyc report --reporter=text-lcov | coveralls",
21 "codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
22 "toc": "markdown-toc README.md > toc"
23 },
24 "keywords": [
25 "continuation",
26 "functional",
27 "monad",
28 "applicative",
29 "functor",
30 "stream",
31 "promise",
32 "async"
33 ],
34 "devDependencies": {
35 "ava": "1.4.1",
36 "codecov": "3.5.0",
37 "coveralls": "3.0.3",
38 "markdown-toc": "1.2.0",
39 "nyc": "14.1.1",
40 "tap": "14.1.11",
41 "tape": "4.10.2"
42 },
43 "dependencies": {}
44}