-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"name": "gamebucket",
"version": "0.0.1a",
"description": "An experimental data manipulation language for games",
"repository": "BucketOSoftware/gamebucket",
"main": "src/compiler.js",
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register --require mocha-clean --require test/helper.js",
"test:watch": "npm test -- --reporter min --watch",
"lint": "eslint src/ ; exit 0"
},
"author": "Alex Michaud",
"license": "GPL-3.0",
"devDependencies": {
"chai": "^3.5.0",
"coffee-script": "^1.11.1",
"eslint": "^3.11.1",
"eval": "^0.1.1",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"mocha-clean": "^1.0.0",
"sanitize-filename": "^1.6.1",
"testdouble": "^1.9.0",
"testdouble-chai": "^0.5.0"
},
"dependencies": {
"ast-types": "^0.9.4",
"csv-parse": "^1.1.7",
"ebnf-parser": "^0.1.10",
"escodegen": "^1.8.1",
"esprima": "^3.1.2",
"estraverse": "^4.2.0",
"jison": "^0.4.17",
"lex": "^1.7.9",
"lex-parser": "^0.1.4",
"lodash": "^4.17.2",
"mustache": "^2.3.0"
}
}