-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
51
{
"name": "luaparse",
"version": "0.3.1",
"description": "A Lua parser in JavaScript",
"keywords": [
"ast",
"lua",
"parser",
"parsing"
],
"homepage": "https://fstirlitz.github.io/luaparse/",
"bugs": "https://github.com/fstirlitz/luaparse/issues",
"license": "MIT",
"author": "Oskar Schöldström <public@oxy.fi> (http://www.oxy.fi/)",
"files": [
"README.md",
"LICENSE",
"luaparse.js",
"bin/luaparse"
],
"main": "luaparse.js",
"bin": {
"luaparse": "bin/luaparse"
},
"man": "./docs/luaparse.1",
"repository": {
"type": "git",
"url": "https://github.com/fstirlitz/luaparse.git"
},
"scripts": {
"test": "make qa",
"version": "make version-bump"
},
"devDependencies": {
"benchmark": "~1.0.0",
"complexity-report": "~0.10.5",
"gulp": "^4.0.0",
"gulp-add-src": "^1.0.0",
"gulp-header": "^2.0.9",
"gulp-jshint": "^2.1.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^3.0.2",
"jshint": "^2.11.1",
"marked": "^4.0.10",
"nyc": "^15.1.0",
"plugin-error": "^1.0.1",
"spec": "1.0.1",
"testem": "^3.6.0",
"through2": "^4.0.2"
}
}