-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "luajit-shell",
"version": "1.0.0",
"description": "Running Lua | LuaJIT scripts from Node.js | Bun via stdio",
"main": "dist/index.js",
"types": "dist/index",
"scripts": {
"build": "node script/rmdir.js && tsc && node script/rmtest.js",
"dev": "node script/rmdir.js && node script/copyfiles.js && tsc -w",
"start": "node -r source-map-support/register ./dist/test.js",
"test": "jest dist/tests"
},
"repository": {
"type": "git+https://github.com/Sparebola/luajit-shell.git",
"url": ""
},
"keywords": [
"luajit",
"lua"
],
"author": "Sparebola",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sparebola/luajit-shell/issues"
},
"homepage": "https://github.com/Sparebola/luajit-shell#readme",
"files": [
"dist"
],
"devDependencies": {
"@jest/globals": "^29.5.0",
"eslint": "^8.42.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"glob": "^10.3.10",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"source-map-support": "^0.5.21",
"typescript": "^5.1.3"
}
}