-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (42 loc) · 1.07 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
{
"name": "lambda-calculator.js",
"version": "1.0.1",
"description": "An implementation of the world's oldest functional programming language",
"keywords": [
"interpreter",
"lambda",
"language"
],
"author": {
"name": "Brian M. Waters",
"email": "[email protected]",
"url:": "https://brianmwaters.net/"
},
"license": "WTFPL",
"devDependencies": {
"chai": "3",
"coffee-script": "1",
"istanbul": "0",
"jshint": "2",
"mocha": "2"
},
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"bin": {
"lambda-calculator.js": "bin/lambda-calculator.js"
},
"scripts": {
"test": "make test"
},
"homepage": "https://github.com/brianmwaters/lambda-calculator.js",
"bugs": {
"url": "https://github.com/brianmwaters/lambda-calculator.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brianmwaters/lambda-calculator.js.git"
}
}