forked from puffnfresh/roy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 KB
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
{
"name": "royml",
"description": "Small functional language that compiles to JavaScript",
"keywords": [
"javascript",
"language",
"roy",
"compiler"
],
"author": "Solaris Studio (studio.solaris@gmail.com)",
"version": "0.1.0",
"engines": {
"node": ">=0.4.0"
},
"main": "src/compile.js",
"bin": {
"execute": "./rmlc",
"rmlc": "./rmlc"
},
"scripts": {
"build:browser": "esbuild src/compile.js --bundle --outfile=dist/royml.browser.js --format=iife --global-name=royml --platform=browser --minify --external:file --external:system",
"build:node": "esbuild src/node-repl.js --bundle --outfile=dist/llml.js --format=cjs --platform=node --banner:js='#!/usr/bin/env node' --external:file --external:system --external:source-map --external:escodegen --external:underscore --external:unicode-categories",
"build:all": "npm run build:node || npm run build:browser"
},
"homepage": "https://todo.com",
"dependencies": {
"escodegen": "^2.1.0",
"source-map": "0.1.8",
"underscore": "1.5.2",
"unicode-categories": "0.9.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"commonjs-everywhere": "~0.8.0",
"esbuild": "^0.27.0",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"grunt": "0.3.15",
"jasmine-node": "1.5.0",
"jison": "0.2.7",
"prettier": "^3.7.4"
}
}