-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1000 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
45
46
{
"name": "shift-esotope",
"description": "ECMAScript code generator for the Shift AST",
"homepage": "http://github.com/vnmc/shift-esotope",
"main": "src/shift-esotope.js",
"version": "1.3.4",
"engines": {
"node": ">=0.10.0"
},
"maintainers": [
{
"name": "Vanamco AG",
"email": "service@vanamco.com",
"web": "http://github.com/vnmc"
}
],
"repository": {
"type": "git",
"url": "http://github.com/vnmc/shift-esotope.git"
},
"devDependencies": {
"shift-parser": ">=4.1.1",
"source-map": ">=0.5.3",
"shift-codegen": "4.0.3",
"should": "3.3.2",
"mocha": "2.2.5",
"benchmark": "~1.0.0",
"microtime": "2.0.0"
},
"keywords": [
"Shift",
"AST",
"node",
"code generator"
],
"licenses": [
{
"type": "BSD",
"url": "http://github.com/vnmc/shift-esotope/raw/master/LICENSE"
}
],
"scripts": {
"test": "mocha --timeout 5000",
"benchmark": "node benchmark/index.js"
}
}