-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "@crguezl/eloquentjsegg",
"version": "1.2.6",
"description": "http://eloquentjavascript.net/11_language.html and https://ULL-ESIT-PL-1617.github.io/egg",
"main": "lib/eggvm.js",
"scripts": {
"test": "mocha",
"start": "./bin/egg.js examples/two.egg",
"compile": "./bin/eggc.js examples/two.egg && ./bin/evm.js examples/two.egg.evm",
"debug": "node --inspect-brk bin/egg.js examples/two.egg",
"pushmaster": "git co master; git push pl1617 master # public version is in remote pl1617"
},
"bin": {
"egg": "./bin/egg.js",
"eggc": "./bin/eggc.js",
"evm": "./bin/evm.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ULL-ESIT-PL-1617/egg.git"
},
"keywords": [
"ull",
"pl",
"parsing",
"lisp"
],
"author": "Casiano",
"license": "ISC",
"bugs": {
"url": "https://github.com/ULL-ESIT-PL-1617/egg/issues"
},
"homepage": "https://github.com/ULL-ESIT-PL-1617/egg#readme",
"devDependencies": {
"mocha": "latest",
"should": "latest"
},
"dependencies": {
"lodash": "latest"
}
}