This repository has been archived by the owner on Nov 14, 2020. It is now read-only.
forked from amber-smalltalk/amber
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "amber",
"version": "0.16.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": "petton.nicolas@gmail.com",
"url": "http://www.nicolas-petton.fr"
},
"license": {
"type": "MIT"
},
"repository": {
"type": "git",
"url": "git://github.com/amber-smalltalk/amber.git"
},
"engines": {
"node": "0.10.x || 0.12.x || >=4.0.0"
},
"scripts": {
"build:parser:begin": "node -e \"process.stdout.write('define([\\'./boot\\'], function($boot) {\\nvar $globals = $boot.globals, nil = $boot.nil;\\n');\"",
"build:parser": "(npm run -s build:parser:begin && pegjs --cache --export-var $globals.SmalltalkParser < support/parser.pegjs && npm run -s build:parser:end) > support/parser.js",
"build:parser:end": "node -e \"process.stdout.write('});');\"",
"test": "npm run test:sunit && npm run test:e2e",
"test:sunit": "grunt test",
"test:e2e": "(cd external && cd amber-cli && npm test)"
},
"devDependencies": {
"amber-compat-es2015": "^0.1.4",
"cors": "^2.7.1",
"express": "^4.7.1",
"grunt": "^0.4.0",
"grunt-concurrent": "^2.2.1",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-execute": "^0.2.1",
"grunt-shell": "^1.2.1",
"pegjs": "^0.9.0",
"requirejs": "^2.1.15"
}
}