We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a33ec37 commit 25ae851Copy full SHA for 25ae851
.gitignore
@@ -3,3 +3,4 @@ node_modules/
3
.idea/
4
*.log
5
coverage/
6
+*.bk
generate_package_json.sh
@@ -0,0 +1,3 @@
1
+#!/bin/bash
2
+cp package.json package.json.bk
+./jpkl eval --format json package.json.pkl > package.json
jpkl
13.7 MB
package.json.pkl
@@ -0,0 +1,16 @@
+name = "minis"
+version = "0.0.1"
+description = "A Toy Programming Language"
+main = "index.js"
+repository = "https://github.com/kmizu/minis"
+author = "Kota Mizushima"
7
+license = "MIT"
8
+scripts = new {
9
+ test = "jest"
10
+}
11
+devDependencies = new {
12
+ jest = "^29.4.0"
13
14
+dependencies = new {
15
+ yarn = "^1.22.21"
16
0 commit comments