-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@eyevinn/chaos-stream-proxy",
"version": "0.8.0",
"description": "Add some chaos to your HTTP streams to validate player behaviour",
"main": "index.js",
"scripts": {
"postinstall": "tsc",
"dev": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node dist/server.js\"",
"start": "node dist/server.js",
"build": "tsc",
"test:watch": "jest --watch",
"test": "jest",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"pretty": "prettier --check --ignore-unknown .",
"deploy:dev": "git tag $(git rev-parse --short HEAD)-dev && git push --tags",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.306.0",
"@eyevinn/m3u8": ">=0.5.6",
"@fastify/aws-lambda": "^3.2.0",
"aws-lambda": "^1.0.7",
"dotenv": "^8.2.0",
"fastify": "^3.29.5",
"fastify-cors": "^6.0.2",
"jest": "^27.5.1",
"lodash": "^4.17.15",
"nock": "^13.2.4",
"node-cache": "^5.1.2",
"node-fetch": "^2.5.7",
"stream-throttle": "^0.1.3",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/preset-typescript": "^7.7.4",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^8.0.0",
"@eyevinn/dev-lambda": "^0.1.2",
"@types/aws-lambda": "^8.10.92",
"@types/clone": "^2.1.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/node-fetch": "^2.5.7",
"@types/stream-throttle": "^0.1.1",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"clone": "^2.1.2",
"eslint": "^8.37.0",
"eslint_d": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^2.7.0",
"lint-staged": "^12.3.4",
"prettier": "2.8.8",
"ts-jest": "^27.1.3",
"tsc-watch": "^5.0.3",
"typescript": "^3.7.3"
},
"author": "Eyevinn Technology AB <[email protected]>",
"contributors": [
"Nicholas Frederiksen <[email protected]> (Eyevinn Technology AB)",
"Johan Lautakoski <[email protected]> (Eyevinn Technology AB)",
"Ludwig Thurfjell <[email protected]> (Eyevinn Technology AB)",
"Jonas Birmé <[email protected]> (Eyevinn Technology AB)",
"Albin Larsson <[email protected]> (Eyevinn Technology AB)",
"Andreas Garcia <[email protected]> (Eyevinn Technology AB)",
"Francis Gniady <[email protected]> (Eyevinn Technology AB)",
"Christine Qiu <[email protected]> (Eyevinn Technology AB)",
"Emil Karim <[email protected]> (Eyevinn Technology AB)"
],
"license": "Apache-2.0",
"keywords": [
"hls",
"proxy",
"test",
"qa",
"tools"
]
}