-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.08 KB
/
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
{
"name": "amber",
"version": "0.11.0",
"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#0.11.0"
},
"engines": {
"node": "0.8.x"
},
"bin": {
"amber": "./bin/amber",
"amberc": "./bin/amberc",
"ambers": "./bin/server"
},
"scripts": {
"test": "sh -c 'grunt amberc:amber_test_runner' && node ./test/amber_test_runner.js"
},
"devDependencies": {
"pegjs": "~0.7.0",
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.3.0",
"grunt-image-embed": "~0.1.3",
"grunt-contrib-mincss": "~0.3.2"
}
}