-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
38 lines (38 loc) · 867 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
{
"name": "lua.js",
"version": "0.1.5",
"description": "Full lua support for js. JS implemented lua2js.",
"main": "lib/index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test --recursive",
"build": "./node_modules/.bin/webpack"
},
"bin": {
"luajs": "bin/lua.js",
"luacjs": "bin/luac.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tdzl2003/lua.js.git"
},
"dependencies": {},
"keywords": [
"lua"
],
"author": "DengYun",
"bugs": {
"url": "https://github.com/tdzl2003/lua.js/issues"
},
"homepage": "https://github.com/tdzl2003/lua.js#readme",
"directories": {
"test": "test"
},
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"intercept-stdout": "^0.1.2",
"mocha": "^2.4.5",
"sinon": "^1.17.4",
"webpack": "^1.13.1"
}
}