-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "@eyevinn/player-analytics-worker",
"version": "0.1.7",
"description": "",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine",
"build": "tsc -p tsconfig-build.json",
"postversion": "git push && git push --tags",
"start": "node build/dev.js"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Eyevinn/player-analytics-worker.git"
},
"author": "Eyevinn Technology <[email protected]>",
"license": "MIT",
"contributors": [
"Oscar Nord <[email protected]> (Eyevinn Technology AB)",
"Nicholas Frederiksen <[email protected]> (Eyevinn Technology AB)"
],
"bugs": {
"url": "https://github.com/Eyevinn/player-analytics-worker/issues"
},
"homepage": "https://github.com/Eyevinn/player-analytics-worker#readme",
"devDependencies": {
"@types/jasmine": "^3.10.2",
"@types/uuid": "^8.3.3",
"@types/winston": "^2.4.4",
"aws-sdk-client-mock": "^0.5.6",
"dotenv": "^10.0.0",
"eslint": "^6.1.3",
"jasmine": "^3.10.0",
"ts-node": "^10.4.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@eyevinn/player-analytics-shared": "^0.5.0",
"@types/node": "^16.6.1",
"uuid": "^8.3.2",
"winston": "^3.3.3"
}
}