UNPKG

3.09 kBJSONView Raw
1{
2 "name": "imba",
3 "description": "Intuitive and powerful language for building webapps that fly",
4 "keywords": [
5 "javascript",
6 "language",
7 "imba",
8 "compiler"
9 ],
10 "author": "Sindre Aarsaether",
11 "license": "MIT",
12 "contributors": [
13 {
14 "name": "Sindre Aarsaether",
15 "email": "sindre@identu.no",
16 "url": "https://github.com/somebee/"
17 },
18 {
19 "name": "Magnus Holm",
20 "email": "judofyr@gmail.com",
21 "url": "https://github.com/judofyr/"
22 },
23 {
24 "name": "Slee Woo",
25 "url": "https://github.com/sleewoo/"
26 },
27 {
28 "name": "Luke Edwards",
29 "email": "luke@lukeed.com",
30 "url": "https://github.com/lukeed/"
31 },
32 {
33 "name": "Gavin Ray",
34 "url": "https://github.com/GavinRay97/"
35 },
36 {
37 "name": "Alexander Alemayhu",
38 "url": "https://github.com/aalemayhu/"
39 }
40 ],
41 "scripts": {
42 "test": "node bin/imba scripts/test-runner.imba",
43 "clean": "find test/apps -name '*.js' -type f -delete && rm -r dist/",
44 "build": "node scripts/build-parser.js && node scripts/build.js",
45 "build-parser": "node scripts/build-parser.js",
46 "watch": "node scripts/build.js -w",
47 "prepublish": "node scripts/build-parser.js && node scripts/build.js",
48 "create-example": "node bin/imba scripts/create-example.imba",
49 "generate-typings": "node bin/imba scripts/docs/generate-typings.imba"
50 },
51 "bugs": "https://github.com/imba/imba/issues",
52 "version": "2.0.0-alpha.203",
53 "licenses": [
54 {
55 "type": "MIT",
56 "url": "https://github.com/imba/imba/raw/master/LICENSE"
57 }
58 ],
59 "engines": {
60 "node": ">=13.10.0"
61 },
62 "directories": {},
63 "main": "./index",
64 "type": "commonjs",
65 "browser": {
66 ".": "./dist/imba.mjs",
67 "./program": "./program.imba.js",
68 "./compiler": "./compiler.imba.js"
69 },
70 "exports": {
71 ".": {
72 "browser": "./dist/imba.mjs",
73 "default": "./index.js"
74 },
75 "./program": "./program.imba.js",
76 "./workers": "./workers.imba.js",
77 "./loader": "./loader.imba.js",
78 "./compiler": "./compiler.imba.js"
79 },
80 "bin": {
81 "imba": "./bin/imba",
82 "imbac": "./bin/imbac",
83 "imba-create": "./bin/imba-create"
84 },
85 "preferGlobal": true,
86 "homepage": "https://imba.io",
87 "repository": {
88 "type": "git",
89 "url": "git://github.com/imba/imba.git"
90 },
91 "files": [
92 "bin",
93 "src",
94 "dist",
95 "build",
96 "typings",
97 "vendor",
98 "scripts/bootstrap.compiler.js",
99 "polyfills",
100 "*.imba",
101 "*.d.ts",
102 "*.js",
103 "*.css",
104 "*.md"
105 ],
106 "devDependencies": {
107 "commander": "^6.2.1",
108 "enquirer": "^2.3.6",
109 "eventemitter3": "^4.0.7",
110 "fdir": "^4.1.0",
111 "flatted": "^3.1.0",
112 "get-port": "^5.1.1",
113 "image-size": "^0.9.3",
114 "micromatch": "^4.0.2",
115 "node-fetch": "^2.6.1",
116 "ora": "^5.2.0",
117 "picomatch": "^2.2.2",
118 "puppeteer": "^10.4.0",
119 "tmp": "^0.2.1",
120 "workerpool": "^6.0.3"
121 },
122 "dependencies": {
123 "chokidar": "^3.4.3",
124 "esbuild": "^0.9.7"
125 },
126 "gitHead": "72701d9d667c26ce7de1ef44e73b109843e06d0e"
127}