-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "earlgrey",
"version": "0.1.2",
"description": "Programming language compiling to JavaScript, featuring macros, dynamic typing annotations and pattern matching.",
"main": "./6.js",
"dependencies": {
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"del": "^2.2.0",
"earlgrey-runtime": "^0.1.0",
"js-beautify": "^1.6.2",
"mkdirp": "^0.5.1",
"multi-stage-sourcemap": "^0.2.1",
"opg": ">=0.0.5",
"source-map": "^0.5.6",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"mocha": "^2.2.1",
"earl-mocha": ">=0.0.3"
},
"bin": {
"earl": "bin/earl",
"earl5": "bin/earl5"
},
"scripts": {
"prepublish": "bin/bootstrap 2 && bin/bootstrap -5 2",
"test": "earl clean test && mocha"
},
"homepage": "http://breuleux.github.io/earl-grey/repl",
"repository": {
"type": "git",
"url": "https://github.com/breuleux/earl-grey"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"earlgrey",
"language",
"macros",
"pattern-matching"
],
"author": "Olivier Breuleux",
"license": "MIT"
}