-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 846 Bytes
/
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
{
"name": "pearscript",
"description": "Simple language that compiles into Javascript",
"version": "0.2.3-1",
"keywords": [
"compiler",
"language",
"javascript",
"pearscript"
],
"main": "./bin/pear",
"bin": {
"pear": "./bin/pear"
},
"preferGlobal": true,
"scripts": {
"test": "./bin/pear ./examples/test.pear"
},
"author": "Ondřej Kocián <kocis.34@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/kocisov/pearscript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kocisov/pearscript.git"
},
"bugs": {
"url": "https://github.com/kocisov/pearscript/issues"
},
"devDependencies": {},
"directories": {
"example": "examples"
},
"dependencies": {
"chalk": "^1.1.1",
"jison": "^0.4.15",
"js-beautify": "^1.5.10"
}
}