-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
40
41
42
43
{
"name": "scriptpacker",
"version": "2.6.0",
"description": "Pack multiple Lua/Wren/Squirrel/ChaiScript/JavaScript scripts together",
"homepage": "https://github.com/RobLoach/scriptpacker",
"keywords": [
"lua",
"wren",
"chaiscript",
"squirrel",
"gravity"
],
"main": "src/ScriptPacker.js",
"bin": {
"scriptpacker": "bin/scriptpacker.js"
},
"files": [
"bin/scriptpacker.js",
"src/ScriptPacker.js"
],
"scripts": {
"test": "mocha test",
"cli": "bin/scriptpacker.js build test/wren/index.wren",
"cli-squirrel": "bin/scriptpacker.js build test/squirrel/index.nut",
"cli-chaiscript": "bin/scriptpacker.js build test/chaiscript/index.chai",
"cli-javascript": "bin/scriptpacker.js build test/javascript/index.js",
"cli-lua": "bin/scriptpacker.js build -m test/lua/init.lua",
"cli-gravity": "bin/scriptpacker.js build test/gravity/index.gravity"
},
"author": "Rob Loach",
"license": "MIT",
"dependencies": {
"luamin": "^1.0.4",
"md5": "^2.3.0",
"remove-blank-lines": "^1.4.1",
"strip-comments": "^2.0.1",
"trim-whitespace": "^1.3.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"mocha": "^8.3.2"
}
}