-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 927 Bytes
/
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
{
"name": "@kldzj/proxy-protocol",
"version": "1.0.1",
"main": "dist/index.js",
"files": [
"dist/*"
],
"license": "BSD",
"repository": "https://github.com/kldzj/proxy-protocol",
"bugs": "https://github.com/kldzj/proxy-protocol/issues",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc mocha -r ts-node/register --globals setImmediate,clearImmediate --check-leaks --colors -t 3000 --exit --reporter spec $(find test/* -name '*.test.ts')",
"prepublishOnly": "yarn test && yarn build"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"chai": "^4.3.4",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"proxy-protocol-js": "^4.0.5"
}
}