-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1 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
{
"name": "piping-static-host",
"version": "0.1.2-SNAPSHOT",
"description": "Host static files to Piping Server",
"bin": {
"piping-static-host": "dist/src/index.js"
},
"main": "dist/src/piping-static-host.js",
"types": "dist/src/piping-static-host.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "mocha --require ts-node/register test/**/*.ts"
},
"keywords": [
"Piping Server",
"static host"
],
"repository": {
"type": "git",
"url": "https://github.com/nwtgck/piping-static-host"
},
"author": "Ryo Ota",
"license": "MIT",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/power-assert": "^1.5.0",
"@types/request": "^2.48.2",
"@types/yargs": "^13.0.2",
"mocha": "^6.2.0",
"power-assert": "^1.6.1",
"ts-node": "^8.3.0",
"typescript": "^4.1.5"
},
"dependencies": {
"glob": "^7.1.4",
"request": "^2.88.0",
"yargs": "^13.3.0"
}
}