-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "static-server-rdil",
"version": "3.1.1",
"description": "Static web server",
"homepage": "https://github.com/rdilweb/static-server",
"bin": {
"static-server-rdil": "./build/source/index.js"
},
"keywords": [
"server",
"local",
"static",
"web",
"rdil",
"rdilweb"
],
"dependencies": {
"chalk": "^4.1.1",
"commander": "^9.4.1",
"mime-types": "^2.1.35",
"showdown": "^2.1.0"
},
"files": [
"build"
],
"license": "MIT",
"author": "Reece Dunham <[email protected]>",
"bugs": {
"url": "https://github.com/rdilweb/static-server/issues"
},
"main": "build/source/index.js",
"scripts": {
"prettier": "prettier --write **/**.{js,ts,json}",
"build": "tsc",
"dev": "yarn build && node build/source/index.js",
"test": "eslint source/*.ts"
},
"devDependencies": {
"@types/mime-types": "^2.1.1",
"@types/node": "^18.11.0",
"@types/showdown": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.9.3"
},
"prettier": {
"semi": false,
"tabWidth": 4
},
"repository": {
"type": "git",
"url": "https://github.com/rdilweb/static-server.git"
},
"engines": {
"node": ">=10.13.0"
}
}