-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.92 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.92 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
{
"name": "@bueno-systems/analytics-opt-out-plugin",
"version": "0.0.0-semantic-release",
"description": "A simple @segment/analytics-next plugin to disable event delivery.",
"author": "Jack Cuthbert <jckcthbrt@gmail.com>",
"license": "MIT",
"type": "module",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"prepack": "yarn build",
"lint": "eslint --ext .js,.ts,.tsx .",
"test": "echo \"No tests defined\"; exit 0;"
},
"files": [
"dist/**"
],
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"segment",
"segmentio",
"analytics-next",
"privacy",
"gdpr"
],
"bugs": {
"url": "https://github.com/bueno-systems/analytics-opt-out-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bueno-systems/analytics-opt-out-plugin.git"
},
"release": {
"branches": [
"main",
"next"
]
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/bueno-systems/analytics-opt-out-plugin#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@segment/analytics-next": "^1.43.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"typescript": "^4.8.3"
},
"peerDependencies": {
"@segment/analytics-next": "^1.40.0"
},
"packageManager": "yarn@3.2.3"
}