-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 901 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
{
"name": "@appguru/luafmt",
"version": "1.5.0",
"esversion": 6,
"description": "A small Lua formatter / pretty printer",
"main": "./index.js",
"scripts": {
"test": "node ./test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appgurueu/luafmt.git"
},
"keywords": [
"lightweight",
"small",
"lite",
"lua",
"formatter",
"pretty-printer"
],
"author": {
"name": "Lars Mueller",
"email": "[email protected]",
"url": "https://appgurueu.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/appgurueu/luafmt/issues"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"dependencies": {
"lustils": "^1.0.2",
"luon": "^1.2.6",
"luaparse": "^0.3.0"
},
"devDependencies": {
"litests": "^1.0.6"
},
"homepage": "https://github.com/appgurueu/luafmt"
}