-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "church",
"version": "2.1.1",
"description": "Church encoding utility library for JavaScript",
"main": "dist/index.js",
"module": "src",
"scripts": {
"benchmark": "node benchmark",
"build": "rm -rf dist && mkdir dist && rollup src/index.js -f cjs | babel --presets es2015 -o dist/index.js",
"docs": "docco src/*.js",
"prepublish": "yarn test && yarn build && yarn docs",
"test": "babel-node node_modules/.bin/tape 'test/**/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benji6/church.git"
},
"keywords": [
"alonzo",
"boolean",
"calculus",
"car",
"cdr",
"church",
"combinatory",
"cons",
"curry",
"encoding",
"functional",
"haskell",
"lambda",
"lisp",
"list",
"logic",
"numeral",
"pair",
"predicate"
],
"author": "Ben Hall",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/benji6/church/issues"
},
"homepage": "https://github.com/benji6/church#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"benchmark": "^2.0.0",
"docco": "^0.9.1",
"rollup": "^4.2.0",
"tape": "^5.0.0"
}
}