-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.85 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
{
"name": "find-congestion",
"version": "0.0.1",
"description": "find inrix congestion",
"main": "src/capture-alerts.js",
"bin": "src/capture-alerts.js",
"scripts": {
"capture-alerts": "ts-node src/capture-alerts.ts",
"giftest": "ts-node src/giftest.ts",
"ingest-inrix": "ts-node src/ingest-inrix.ts",
"build_tmc_demo": "tsc && pkg .",
"clean": "rm -rf coverage src/**/*.js src/**/*.map",
"lint": "eslint '*/**/*.ts'",
"lint:fix": "eslint '*/**/*.ts' --fix",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"view:cov": "serve coverage/lcov-report"
},
"author": "",
"license": "ISC",
"pkg": {
"scripts": "src/capture-alerts.js",
"assets": "src/**/*.json",
"targets": [
"node14-macos-x64"
],
"outputPath": "pkg_dist"
},
"dependencies": {
"@turf/turf": "^6.5.0",
"@types/get-pixels": "^3.3.1",
"@types/gifencoder": "^2.0.1",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@types/node-fetch": "^2.5.12",
"@types/source-map-support": "^0.5.1",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"get-pixels": "^3.3.3",
"gifencoder": "^2.0.1",
"image-size": "^1.0.0",
"jest": "^26.0.1",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"serve": "^11.3.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"ws": "^8.2.0"
}
}