-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "my-anywhere",
"version": "1.3.0",
"description": "NodeJs static file server",
"main": "src/index.js",
"bin": {
"my-anywhere": "./dest/index.js",
"here": "./dest/index.js"
},
"scripts": {
"start": "./dest/index.js",
"eslint": "eslint",
"lint": "eslint ./src --quiet --cache --ext .ts,.tsx,.js",
"TypeScript:watch": "tsc --w --outDir ./dest",
"build": "rm -rf dest/ && tsc --outDir ./dest"
},
"keywords": [
"NodeJS",
"server",
"static-server",
"file"
],
"author": "safarishi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/safarishi/anywhere.git"
},
"homepage": "https://github.com/safarishi/anywhere",
"dependencies": {
"@types/mime-types": "^2.1.0",
"mime-types": "^2.1.22"
},
"devDependencies": {
"@types/node": "^13.1.5",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"typescript": "^3.7.4"
}
}