forked from mathiasbynens/luamin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 902 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
47
48
{
"name": "luamin",
"version": "1.0.4",
"description": "A Lua minifier written in JavaScript",
"homepage": "https://mths.be/luamin",
"main": "luamin.js",
"bin": "bin/luamin",
"keywords": [
"lua",
"minify",
"minifier"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/luamin.git"
},
"bugs": "https://github.com/mathiasbynens/luamin/issues",
"files": [
"LICENSE-MIT.txt",
"luamin.js",
"bin/",
"man/"
],
"directories": {
"bin": "bin",
"man": "man",
"test": "tests"
},
"scripts": {
"test": "node tests/tests.js"
},
"dependencies": {
"luaparse": "^0.2.1"
},
"devDependencies": {
"grunt": "^0.4.4",
"grunt-shell": "^1.1.2",
"istanbul": "^0.4.2",
"qunit-extras": "^1.4.5",
"qunitjs": "~1.11.0",
"requirejs": "^2.1.22"
}
}