forked from featurist/pogoscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1017 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
39
40
41
42
43
44
45
46
47
{
"name": "pogo",
"version": "0.10.0",
"description": "A readable, DSL friendly programming language that compiles to JavaScript",
"author": "Tim Macfarlane <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/featurist/pogoscript.git"
},
"files": [
"index.js",
"pogo.js",
"lib",
"bin"
],
"scripts": {
"test": "mocha --invert --grep @wip test/*Spec.* test/*/*Spec.*"
},
"bin": {
"pogo": "bin/pogo"
},
"main": "index.js",
"devDependencies": {
"bluebird": "^2.2.1",
"browserify": "",
"chai": "^1.9.1",
"glob": "",
"install": "~0.1.7",
"jison": "",
"mocha": "^1.18.2",
"pogoify": "0.0.3"
},
"bugs": {
"url": "https://github.com/featurist/pogoscript/issues"
},
"dependencies": {
"source-map": "~0.1.31",
"uglify-js": "~2.4.13",
"underscore": "1.4.4"
},
"keywords": [
"language",
"pogo"
],
"license": "BSD-2-Clause",
"browser": "lib/parser/compiler.js"
}