-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.09 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
{
"name": "sloth",
"version": "1.0.0",
"description": "Compilador Sloth para o trabalho de ECOM06",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildBook-dev": "gitbook build ./documentacao ./docs",
"buildTest": "cd compilador/codigo && javacc ../CompiladorSloth.jj && javac *.java && java CompiladorSloth.java ../test/test.sloth ../test/test.java",
"runTest": "cd compilador/codigo && java CompiladorSloth.java ../test/test.sloth ../test/test.java",
"buildJar": "cd compilador/codigo && jar -cfe ../bin/CompiladorSloth.jar CompiladorSloth *.class",
"runJar": "java -jar ./compilador/bin/CompiladorSloth.jar"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wykke/TrabalhoECOM06.git"
},
"keywords": [
"Compilador",
"Sloth",
"Unifei",
"ECOM06"
],
"author": "Alex, Caike, Leonardo",
"license": "ISC",
"bugs": {
"url": "https://github.com/wykke/TrabalhoECOM06/issues"
},
"homepage": "https://wykke.github.io/TrabalhoECOM06"
}