-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "gren-lang",
"version": "0.4.6",
"description": "Compiler for the Gren programming language",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"build": "npx [email protected] -- gren make src/Main.gren --optimize --output=compiler.js",
"prettier": "prettier -w \"!**/*.json\" .",
"prettier:check": "prettier -c \"!**/*.json\" ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/gren-lang/compiler.git"
},
"files": [
"index.js",
"compiler.js",
"cli.js"
],
"bin": {
"gren": "cli.js"
},
"keywords": [
"gren",
"lang",
"language",
"bin",
"binary",
"install",
"installer"
],
"author": "Robin Heggelund Hansen",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/gren-lang/compiler/issues"
},
"homepage": "https://gren-lang.org",
"dependencies": {
"postject": "^1.0.0-alpha.6"
},
"devDependencies": {
"prettier": "3.3.3",
"gren-lang": "0.4.5"
}
}