forked from amber-smalltalk/amber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 989 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": "amber",
"version": "0.13.0-pre",
"description": "An implementation of the Smalltalk language that runs on top of the JS runtime.",
"homepage": "http://amber-lang.net",
"keywords": [
"javascript",
"smalltalk",
"language",
"compiler",
"web"
],
"author": {
"name": "Nicolas Petton",
"email": "[email protected]",
"url": "http://www.nicolas-petton.fr"
},
"license": {
"type": "MIT"
},
"repository": {
"type": "git",
"url": "git://github.com/amber-smalltalk/amber.git"
},
"engines": {
"node": ">=0.8.0"
},
"bin": {
"amber": "./cli/support/amber-cli.js",
"amberc": "./cli/support/amberc-cli.js"
},
"scripts": {
"test": "grunt amberc:amber_test_runner && node ./test/amber_test_runner.js"
},
"dependencies": {
"es6-promise": "~0.1.1",
"amdefine": "0.0.8"
},
"devDependencies": {
"pegjs": "~0.8.0",
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.3.0"
}
}