-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.82 KB
/
package.json
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "imba",
"description": "Intuitive and powerful language for building webapps that fly",
"keywords": [
"javascript",
"language",
"imba",
"compiler"
],
"author": "Sindre Aarsaether",
"license": "MIT",
"contributors": [
{
"name": "Sindre Aarsaether",
"email": "[email protected]",
"url": "https://github.com/somebee/"
},
{
"name": "Magnus Holm",
"email": "[email protected]",
"url": "https://github.com/judofyr/"
},
{
"name": "Slee Woo",
"url": "https://github.com/sleewoo/"
},
{
"name": "Luke Edwards",
"email": "[email protected]",
"url": "https://github.com/lukeed/"
},
{
"name": "Gavin Ray",
"url": "https://github.com/GavinRay97/"
},
{
"name": "Alexander Alemayhu",
"url": "https://github.com/aalemayhu/"
}
],
"scripts": {
"test": "node bin/imba scripts/test-runner.imba",
"clean": "find test/apps -name '*.js' -type f -delete && rm -r dist/",
"bootstrap": "node scripts/build-parser.js && node scripts/build.js",
"build": "node scripts/build.js",
"build-parser": "node scripts/build-parser.js",
"watch": "node scripts/build.js -w",
"prerelease": "lerna publish --dist-tag pre",
"link-latest": "node bin/imba scripts/link-latest.imba",
"create-example": "node bin/imba scripts/create-example.imba"
},
"bugs": "https://github.com/imba/imba/issues",
"version": "2.0.0-alpha.172",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/imba/imba/raw/master/LICENSE"
}
],
"engines": {
"node": ">=13.10.0"
},
"directories": {},
"main": "./index",
"type": "commonjs",
"browser": {
".": "./dist/imba.mjs",
"./program": "./program.imba.js",
"./compiler": "./compiler.imba.js"
},
"exports": {
".": {
"browser": "./dist/imba.mjs",
"default": "./index.js"
},
"./program": "./program.imba.js",
"./workers": "./workers.imba.js",
"./loader": "./loader.imba.js",
"./compiler": "./compiler.imba.js"
},
"bin": {
"imba": "./bin/imba",
"imbac": "./bin/imbac",
"imba-create": "./bin/imba-create"
},
"preferGlobal": true,
"homepage": "https://imba.io",
"repository": {
"type": "git",
"url": "git://github.com/imba/imba.git"
},
"devDependencies": {
"commander": "^6.2.1",
"enquirer": "^2.3.6",
"eventemitter3": "^4.0.7",
"fdir": "^4.1.0",
"flatted": "^3.1.0",
"get-port": "^5.1.1",
"image-size": "^0.9.3",
"micromatch": "^4.0.2",
"node-fetch": "^2.6.1",
"ora": "^5.2.0",
"picomatch": "^2.2.2",
"puppeteer": "^2.1.1",
"tmp": "^0.2.1",
"workerpool": "^6.0.3"
},
"dependencies": {
"chokidar": "^3.4.3",
"esbuild": "^0.9.7"
},
"gitHead": "89d795f6da117019aa7c018b9e57293cf732a3ab"
}