-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.17 KB
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
{
"name": "@telemetrydeck/sdk",
"version": "2.0.4",
"description": "Send analytics signals to TelemetryDeck",
"main": "dist/telemetrydeck.cjs",
"module": "dist/telemetrydeck.js",
"types": "dist/telemetrydeck.d.ts",
"files": [
"dist/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c && tsc dist/*.js --declaration --allowJs --emitDeclarationOnly",
"changelog": "lerna-changelog",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:md": "prettier --check \"**/*.{html,md,yaml,yml}\"",
"lint:md:fix": "prettier --write \"**/*.{html,md,yaml,yml}\"",
"prepack": "rollup -c && tsc dist/*.js --declaration --allowJs --emitDeclarationOnly",
"release": "dotenv release-it --",
"test": "ava",
"test:watch": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TelemetryDeck/JavaScriptSDK.git"
},
"private": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"TelemetryDeck",
"tracking",
"analytics",
"sdk"
],
"author": "Daniel Jilg <daniel@telemetrydeck.com>",
"contributors": [
"Florian Pichler <florian.pichler@simplabs.com> (https://florian.pichler.de)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TelemetryDeck/JavaScriptSDK/issues"
},
"homepage": "https://telemetrydeck.com/",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-replace": "^5.0.2",
"@sinonjs/fake-timers": "^11.0.0",
"ava": "^5.3.1",
"concurrently": "^8.2.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.0",
"lerna-changelog": "^2.2.0",
"prettier": "^3.0.0",
"release-it": "^14.12.1",
"release-it-lerna-changelog": "^4.0.1",
"rollup": "^3.26.3",
"sinon": "^15.2.0",
"typescript": "^4.5.4"
}
}