-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "piping-server",
"version": "1.12.9",
"description": "Streaming Data Transfer Server over HTTP/HTTPS",
"bin": {
"piping-server": "dist/src/index.js"
},
"main": "dist/src/piping.js",
"types": "dist/src/piping.d.ts",
"files": [
"dist/src"
],
"scripts": {
"generate-version": "sh -c \"echo 'export const VERSION = \\\"${npm_package_version}\\\";' > src/version.ts\"",
"build": "npm run generate-version && tsc",
"start": "npm run build && node dist/src/index.js",
"dev": "nodemon src/index.ts",
"lint": "tslint 'src/**/*.ts' && tslint 'test/**/*.ts'",
"prepare": "npm run build",
"test": "mocha --require ts-node/register --timeout 10000 test/**/*.ts"
},
"keywords": [
"http",
"piping",
"data-transfer",
"server",
"transfer"
],
"repository": {
"type": "git",
"url": "https://github.com/nwtgck/piping-server"
},
"author": "Ryo Ota <nwtgck@nwtgck.org> (https://github.com/nwtgck)",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^20.14.1",
"@types/power-assert": "^1.5.8",
"@types/request": "^2.48.8",
"@types/yargs": "^17.0.23",
"espower-typescript": "^10.0.1",
"mocha": "^9.2.2",
"nodemon": "^3.0.1",
"power-assert": "^1.6.1",
"request": "^2.88.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.0.2",
"undici": "^5.21.0"
},
"dependencies": {
"log4js": "^6.9.1",
"multiparty": "^4.2.3",
"yargs": "^17.7.1"
}
}