-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 952 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
{ "name": "hopper"
, "version": "0.2.0"
, "description": "An interpreter for the Grace programming language"
, "keywords":
[ "grace"
, "language"
, "interpreter"
]
, "dependencies":
{ "asap": ">=1.0 <3.0"
, "optparse": "1.x"
, "setimmediate": "1.x"
}
, "devDependencies":
{ "brfs": "1.x"
, "eslint": "1.4.x"
, "unicode-7.0.0": "0.1.x"
}
, "main": "lib/hopper.js"
, "bin": "bin/hopper.js"
, "scripts":
{ "test": "test/harness.js"
, "prepublish": "tools/build-unicode.js"
, "lint": "node_modules/eslint/bin/eslint.js ."
}
, "homepage": "https://github.com/zmthy/hopper"
, "repository":
{ "type": "git"
, "url": "git://github.com/zmthy/hopper.git"
}
, "bugs":
{ "url": "https://github.com/zmthy/hopper/issues"
, "email": "git@zmthy.io"
}
, "author":
{ "name": "Timothy Jones"
, "email": "tim@zmthy.io"
, "url": "http://zmthy.io"
}
, "license": "GPL-3.0+"
, "browserify":
{ "transform": ["brfs"]
}
}