-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 865 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 865 Bytes
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
{
"name": "lua-httpd_1-1",
"version": "1.0.0",
"description": "HTTP/1.1 Server for LUA with no deps",
"license": "MIT",
"scripts": {
"install:windows": "choco install lua",
"install:osx": "brew install lua",
"prettier:write": "prettier . -w",
"prettier": "prettier . -c",
"clean": "rimraf dist",
"dev": "cd src/ && nodemon -x lua init.lua",
"test": "concurrently -k -s \"first\" \"npm run dev\" \"jest\"",
"test:watch": "nodemon --watch './src/**.*' --watch './test/**.test.js' -x npm run test"
},
"devDependencies": {
"@jest/globals": "^29.4.1",
"@jest/types": "^29.4.1",
"axios": "^1.2.6",
"concurrently": "^7.6.0",
"express": "^4.18.2",
"http-status": "^1.6.2",
"jest": "^29.4.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"statuses": "^2.0.1"
}
}