-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 794 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 794 Bytes
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
{
"name": "@codewars/lambda-calculus",
"type": "module",
"version": "1.1.2",
"description": "Lambda Calculus evaluator for Codewars",
"main": "src/lambda-calculus.js",
"files": [
"src/"
],
"scripts": {
"test": "mocha --reporter spec ./tests/*/test.js",
"repl": "node ./src/LC-REPL.js",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codewars/lambda-calculus.git"
},
"keywords": [
"lc",
"lambda-calculus"
],
"author": "Kacarott",
"license": "MIT",
"bugs": {
"url": "https://github.com/codewars/lambda-calculus/issues"
},
"homepage": "https://github.com/codewars/lambda-calculus#readme",
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.4"
}
}