diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-09-12 12:44:15 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-09-12 12:44:15 +0100 |
commit | 7669f75f4ee16d692b1171c3329bf5e3485c1a7c (patch) | |
tree | 3a3686993ee3e6da5b968851fc7009104abb2430 /package.json | |
parent | 6529e7ebcd8681f2d1687d2aa8e44838c25ed279 (diff) | |
download | javascript-7669f75f4ee16d692b1171c3329bf5e3485c1a7c.tar.gz javascript-7669f75f4ee16d692b1171c3329bf5e3485c1a7c.zip |
Build script
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/package.json b/package.json index 05119aa..eeac2a1 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,18 @@ { + "name": "gleam_javascript", "type": "module", "scripts": { - "test": "bash bin/test.sh" + "build": "node bin/build.js build", + "test": "node bin/build.js test" }, "devDependencies": { "gleam-packages": "file:./target/lib" - } + }, + "gleamDependencies": [ + { + "name": "gleam_stdlib", + "ref": "main", + "url": "https://github.com/gleam-lang/stdlib.git" + } + ] } |