forked from redhat-developer/vscode-redhat-telemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.07 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
{
"name": "@redhat-developer/vscode-redhat-telemetry",
"version": "0.7.0",
"description": "Provides Telemetry APIs for Red Hat applications",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"clean": "rimraf lib/",
"copy-files": "copyfiles -u 1 src/config/* src/tests/config/* lib/",
"compile": "tsc -b ./tsconfig.json",
"build": "npm run clean && npm run copy-files && npm run compile",
"prepublish": "npm run build",
"coverage": "nyc -r lcov -e .ts -x \"*.ts\" npm run test",
"test": "mocha -r ts-node/register --ui tdd \"src/tests/**/*.test.ts\"",
"package": "npm run build && webpack"
},
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-developer/vscode-redhat-telemetry.git"
},
"bugs": {
"url": "https://github.com/redhat-developer/vscode-redhat-telemetry/issues"
},
"author": "Red Hat",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/countries-and-timezones": "3.2.3",
"@types/getos": "^3.0.1",
"@types/picomatch": "^2.3.0",
"@types/mocha": "^10.0.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.7.3",
"@types/object-hash": "^3.0.2",
"@types/uuid": "^9.0.0",
"@types/vscode": "1.75.1",
"axios-mock-adapter": "^1.21.2",
"chai": "^4.3.6",
"copyfiles": "^2.4.1",
"mocha": "10.1.0",
"ts-mocha": "10.0.0",
"mock-fs": "^5.1.4",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"warnings-to-errors-webpack-plugin": "^2.3.0",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0"
},
"dependencies": {
"@segment/analytics-node": "0.0.1-beta.17",
"axios": "^1.6.3",
"countries-and-timezones": "^3.4.1",
"getos": "^3.2.1",
"picomatch": "^2.3.1",
"object-hash": "^3.0.0",
"os-locale": "^5.0.0",
"uuid": "^9.0.1",
"ua-parser-js": "1.0.33"
}
}