-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "@segment/analytics-node",
"version": "2.2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"license": "MIT",
"repository": {
"directory": "packages/node",
"type": "git",
"url": "https://github.com/segmentio/analytics-next"
},
"files": [
"dist/",
"src/",
"!**/__tests__/**",
"!*.tsbuildinfo"
],
"engines": {
"node": ">=18"
},
"scripts": {
".": "yarn run -T turbo run --filter=@segment/analytics-node",
"test": "yarn jest",
"lint": "yarn concurrently 'yarn:eslint .' 'yarn:tsc --noEmit'",
"build": "rm -rf dist && yarn concurrently 'yarn:build:*'",
"build:cjs": "yarn tsc -p tsconfig.build.json --outDir ./dist/cjs --module commonjs",
"version": "sh scripts/version.sh",
"build:esm": "yarn tsc -p tsconfig.build.json",
"watch": "yarn build:esm --watch",
"watch:test": "yarn test --watch",
"tsc": "yarn run -T tsc",
"eslint": "yarn run -T eslint",
"concurrently": "yarn run -T concurrently",
"jest": "yarn run -T jest"
},
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"@segment/analytics-core": "1.8.0",
"@segment/analytics-generic-utils": "1.2.0",
"buffer": "^6.0.3",
"jose": "^5.1.0",
"node-fetch": "^2.6.7",
"tslib": "^2.4.1"
},
"devDependencies": {
"@internal/config": "0.0.0",
"@types/node": "^16",
"axios": "^1.6.2"
},
"packageManager": "[email protected]"
}