UNPKG

3.02 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 "bootstrap": "node scripts/build-parser.js && node scripts/build.js",
45 "build": "node scripts/build.js",
46 "build-parser": "node scripts/build-parser.js",
47 "watch": "node scripts/build.js -w",
48 "prerelease": "lerna publish --dist-tag pre",
49 "link-latest": "node bin/imba scripts/link-latest.imba",
50 "create-example": "node bin/imba scripts/create-example.imba"
51 },
52 "bugs": "https://github.com/imba/imba/issues",
53 "version": "2.0.0-alpha.155",
54 "licenses": [
55 {
56 "type": "MIT",
57 "url": "https://github.com/imba/imba/raw/master/LICENSE"
58 }
59 ],
60 "engines": {
61 "node": ">=13.10.0"
62 },
63 "directories": {},
64 "main": "./index",
65 "type": "commonjs",
66 "browser": {
67 ".": "./index.imba",
68 "imba": "./index.imba",
69 "path": "./vendor/path.js",
70 "events": "./vendor/events.js",
71 "./program.imba": "./program.imba.js",
72 "./compiler.imba": "./compiler.imba.js"
73 },
74 "imports": {
75 "#imba": "./index.imba.js"
76 },
77 "exports": {
78 ".": "./index.js",
79 "./program": "./program.imba.js",
80 "./workers": "./workers.imba.js",
81 "./register": "./register.imba.js",
82 "./loader": "./loader.imba.js",
83 "./compiler": "./compiler.imba.js"
84 },
85 "bin": {
86 "imba": "./bin/imba",
87 "imbac": "./bin/imbac",
88 "imba-create": "./bin/imba-create"
89 },
90 "preferGlobal": true,
91 "homepage": "https://imba.io",
92 "repository": {
93 "type": "git",
94 "url": "git://github.com/imba/imba.git"
95 },
96 "devDependencies": {
97 "commander": "^6.2.1",
98 "enquirer": "^2.3.6",
99 "eventemitter3": "^4.0.7",
100 "fdir": "^4.1.0",
101 "flatted": "^3.1.0",
102 "get-port": "^5.1.1",
103 "image-size": "^0.9.3",
104 "micromatch": "^4.0.2",
105 "node-fetch": "^2.6.1",
106 "ora": "^5.2.0",
107 "picomatch": "^2.2.2",
108 "puppeteer": "^2.1.1",
109 "tmp": "^0.2.1",
110 "workerpool": "^6.0.3"
111 },
112 "dependencies": {
113 "chokidar": "^3.4.3",
114 "esbuild": "^0.9.7"
115 },
116 "gitHead": "225ff37f898822d91c3962686e6f27c42d11b14a"
117}