-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
{
"name": "@telemetrydeck/web",
"version": "1.1.0",
"description": "Send analytics signals to TelemetryDeck",
"main": "dist/telemetrydeck.js",
"module": "dist/telemetrydeck.mjs",
"scripts": {
"start": "concurrently \"npm:start:*\"",
"start:dummys": "serve tests/dummys/ -p 3000 -c ../../serve.json -n -C",
"start:sdk": "rollup -c && serve dist/ -p 3001 -c ../serve.json -n -C",
"build": "rollup -c",
"changelog": "lerna-changelog",
"lint:fix": "npm run lint:fix:eslint && npm run lint:fix:prettier",
"lint:fix:eslint": "eslint . --fix",
"lint:fix:prettier": "prettier . --write",
"lint": "eslint . --cache",
"prepublish": "rollup -c",
"release": "dotenv release-it --",
"test": "playwright test",
"test:ui": "playwright test --ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TelemetryDeck/JavaScriptSDK.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"TelemetryDeck",
"tracking",
"analytics",
"sdk"
],
"author": "Daniel Jilg <[email protected]>",
"contributors": [
"Florian Pichler <[email protected]> (https://florian.pichler.de)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TelemetryDeck/JavaScriptSDK/issues"
},
"homepage": "https://github.com/TelemetryDeck/JavaScriptSDK#readme",
"devDependencies": {
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"@playwright/test": "^1.36.0",
"@rollup/plugin-json": "^6.0.0",
"concurrently": "^8.2.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.44.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-playwright": "^0.15.3",
"eslint-plugin-unicorn": "^47.0.0",
"lerna-changelog": "^2.2.0",
"prettier": "^2.5.1",
"release-it": "^16.1.0",
"release-it-lerna-changelog": "^5.0.0",
"rollup": "^3.26.2",
"rollup-jest": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.2.0",
"typescript": "^5.1.6"
}
}