forked from imba/imba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.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
{
"name": "imba",
"description": "A rich language for the web",
"keywords": [
"javascript",
"language",
"imba",
"compiler"
],
"author": "Sindre Aarsaether",
"license": "MIT",
"contributors": [
{
"name": "Sindre Aarsaether",
"email": "sindre@identu.no",
"url": "http://github.com/somebee/"
},
{
"name": "Magnus Holm",
"email": "judofyr@gmail.com",
"url": "http://github.com/judofyr/"
},
{
"name": "Slee Woo",
"url": "http://github.com/sleewoo/"
},
{
"name": "Luke Edwards",
"email": "luke@lukeed.com",
"url": "http://github.com/lukeed/"
},
{
"name": "Gavin Ray",
"url": "http://github.com/GavinRay97/"
}
],
"scripts": {
"build-parser": "imba scripts/build-parser.imba",
"build": "webpack --progress --colors --display-modules",
"build-watch": "webpack --progress --colors --display-modules --watch",
"watch": "bin/imbac -w --es5 -o lib/ src/",
"test": "bin/imba test/index.imba",
"test-webpack": "bin/imba test/webpack/test.imba",
"test-chrome": "bin/imba test/run-chrome.imba"
},
"bugs": "https://github.com/somebee/imba/issues",
"version": "1.4.0",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/somebee/imba/raw/master/LICENSE"
}
],
"engines": {
"node": ">=4.0.0"
},
"directories": {},
"main": "./index",
"browser": "./imba",
"bin": {
"imba": "./bin/imba",
"imbac": "./bin/imbac",
"imbapack": "./bin/imbapack"
},
"preferGlobal": true,
"homepage": "http://imba.io",
"repository": {
"type": "git",
"url": "git://github.com/somebee/imba.git"
},
"devDependencies": {
"underscore": "^1.8.3",
"uglifyjs-webpack-plugin": "^1.0.0-rc.0",
"webpack": "^3.6.0"
},
"dependencies": {}
}