-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
41 lines (41 loc) · 985 Bytes
/
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": "gren-lang",
"version": "0.5.2",
"description": "Compiler for the Gren programming language",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"build": "npx [email protected] --yes -- gren make src/Main.gren --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"
],
"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"
}
}