-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "lambda-core",
"version": "0.0.2",
"description": "Lambda Calculus Core",
"author": "Sven Tennie",
"license": "BSD-2-Clause",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/supersven/lambda-core.git"
},
"bugs": {
"url": "https://github.com/supersven/lambda-core/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"autotest": "./node_modules/.bin/mocha --watch --colors",
"antlr-generate": "antlr4 -o ./antlr/generated -listener -Dlanguage=JavaScript -encoding utf-8 -visitor -lib ./antlr/grammar ./antlr/grammar/LambdaCalculus.g4"
},
"directories": {
"lib": "src"
},
"files": [
"dist/lambda-core.js"
],
"keywords": [
"Lambda",
"Calculus"
],
"devDependencies": {
"chai": "^3.4.1",
"expect.js": "^0.3.1",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"mocha": "^2.3.4"
},
"dependencies": {
"antlr4": "^4.5.2",
"immutable": "^3.7.6",
"lodash": "^4.6.1",
"mori": "^0.3.2"
}
}