-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.33 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"version": "6.2.0",
"name": "cpsfy",
"description": "Tiny goodies for Continuation-Passing-Style functions",
"main": "index.js",
"files": [
"index.js",
"utils.js"
],
"repository": "https://github.com/dmitriz/cpsfy.git",
"author": "Dmitri Zaitsev <[email protected]> (https://github.com/dmitriz)",
"license": "MIT",
"scripts": {
"com": "git add . && git commit",
"syn": "npm run com && git pull && git push",
"start": "npm run com && npm version",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "npm run syn && git push --follow-tags",
"release": "git checkout master && npm run syn && npx standard-version && npm publish",
"tape": "TEST=tape npx nyc tape test/*test.js",
"tapew": "TEST=tape npx onchange -i '**/*.js' -- npm run tape",
"tap": "npx tap test/*test.js",
"tapw": "npm run tap -- -w",
"ava": "npx nyc ava test/*test.js",
"avaw": "npx ava test/*test.js -w",
"ava-c8": "npx c8 ava test/*test.js",
"cov-tap": "npx tap test/*test.js --coverage-report=lcov",
"cov-ava": "npx c8 ava test/*test.js --coverage-report=lcov",
"rebcont": "git add . && git rebase --continue",
"toc": "npx markdown-toc DOCUMENTATION.md > toc",
"doc": "npx documentation build 'index.js' -f html -o auto-docs --github",
"test": "npm run ava",
"testw": "npm run avaw"
},
"keywords": [
"library",
"utilities",
"function",
"variadic",
"polymorphic",
"abstraction",
"continuation",
"cont",
"cps",
"task",
"future",
"control-flow",
"pipe",
"pipeline",
"higher-order",
"compose",
"composition",
"function composition",
"fluent",
"point-free",
"curry",
"curried",
"currying",
"partial",
"fantasy-land",
"static-land",
"functional",
"functional-programming",
"functional programming",
"fp",
"algebraic",
"algebraic-data-types",
"monad",
"monadic",
"applicative",
"functor",
"filter",
"sequence",
"iteration",
"scan",
"reducer",
"state",
"action",
"events",
"stream",
"event stream",
"callback",
"promise",
"async",
"async-function",
"asynchronous",
"parallel",
"control-flow"
],
"devDependencies": {
"ava": "^6.1.3",
"tape": "^4.16.1"
}
}