-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@rudderstack/analytics-js-cookies",
"version": "0.5.11",
"description": "RudderStack JavaScript SDK Cookies Utilities",
"main": "dist/npm/modern/cjs/index.cjs",
"module": "dist/npm/modern/esm/index.mjs",
"type": "module",
"exports": {
".": {
"types": "./dist/npm/index.d.mts",
"require": {
"types": "./dist/npm/index.d.cts",
"default": "./dist/npm/modern/cjs/index.cjs"
},
"import": {
"types": "./dist/npm/index.d.mts",
"default": "./dist/npm/modern/esm/index.mjs"
}
},
"./legacy": {
"types": "./dist/npm/index.d.mts",
"require": {
"types": "./dist/npm/index.d.cts",
"default": "./dist/npm/legacy/cjs/index.cjs"
},
"import": {
"types": "./dist/npm/index.d.mts",
"default": "./dist/npm/legacy/esm/index.mjs"
}
}
},
"types": "./dist/npm/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/npm/index.d.mts"
]
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/npm",
"LICENSE.md",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"analytics",
"rudder"
],
"author": "RudderStack",
"license": "Elastic-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rudderlabs/rudder-sdk-js.git",
"directory": "packages/analytics-js-cookies"
},
"bugs": {
"url": "https://github.com/rudderlabs/rudder-sdk-js/issues"
},
"homepage": "https://github.com/rudderlabs/rudder-sdk-js/blob/main/packages/analytics-js-cookies/README.md",
"scripts": {
"clean": "rimraf -rf ./dist && rimraf -rf ./node_modules/.cache && rimraf -rf ./reports",
"start": "exit 0",
"build": "npm run build:browser && npm run build:package",
"build:modern": "npm run build:browser:modern && npm run build:package:modern",
"build:browser:modern": "exit 0",
"build:browser": "exit 0",
"build:npm": "rollup -c --environment VERSION:$npm_package_version,ENV:prod,MODULE_TYPE:npm",
"build:npm:modern": "BROWSERSLIST_ENV=modern npm run build:npm",
"build:package": "npm run build:npm",
"build:package:modern": "npm run build:npm:modern",
"test": "nx test --maxWorkers=50%",
"test:ci": "nx test --configuration=ci --runInBand --maxWorkers=1 --forceExit",
"check:lint": "nx lint",
"check:lint:ci": "nx lint --configuration=ci",
"check:size:build": "npm run build:browser && npm run build:browser:modern && npm run build:package && npm run build:package:modern",
"check:size": "npm run check:size:build && size-limit",
"check:size:json": "size-limit --json",
"check:circular": "madge --circular --extensions js,ts src || exit 0",
"check:support": "NODE_ENV=production npx browserslist --mobile-to-desktop",
"check:support:modern": "NODE_ENV=modern npx browserslist --mobile-to-desktop",
"check:duplicates": "jscpd src",
"check:security": "npm audit --audit-level=high",
"check:pub": "npx publint",
"package": "npm pack",
"release": "npm publish"
},
"dependencies": {
"@rudderstack/analytics-js-common": "*"
},
"devDependencies": {},
"overrides": {},
"browserslist": {
"production": [
"> 0.1%",
"IE >= 11"
],
"modern": [
"defaults and supports es6-module-dynamic-import and not dead"
]
}
}