-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 847 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
{
"name": "harmonizr",
"version": "0.2.0",
"description": "bring tomorrow's Harmony to today's JavaScript",
"keywords": [
"javascript",
"harmony",
"ecmascript",
"transpiler"
],
"homepage": "https://github.com/jdiamond/harmonizr",
"bugs": {
"url": "https://github.com/jdiamond/harmonizr/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jdiamond/harmonizr"
},
"license": "MIT",
"author": "Jason Diamond <[email protected]>",
"main": "./lib/harmonizr.js",
"bin": {
"harmonizr": "./bin/harmonizr"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha"
},
"engines": {
"node": "*"
},
"dependencies": {
"commander": "*"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"chai": "*",
"cover": "*",
"jshint": "*"
}
}