-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "gaiman",
"version": "1.0.0-beta.3",
"description": "Gaiman Text based advanture games engine and programming language",
"main": "index.js",
"scripts": {
"build": "pegjs -o parser.js src/gaiman.pegjs"
},
"bin": {
"gaiman": "bin/compile.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcubic/gaiman.git"
},
"keywords": [],
"author": "Jakub T. Jankiewicz <jcubic@onet.pl>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jcubic/gaiman/issues"
},
"homepage": "https://github.com/jcubic/gaiman#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"coveralls": "^3.1.1",
"jest": "^27.4.5",
"peggy": "^1.2.0",
"rollup": "^2.61.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.23.2",
"@babel/standalone": "^7.18.5",
"@jcubic/lily": "^0.3.0",
"escodegen": "^2.1.0",
"terser": "^5.14.2"
}
}