This repository was archived by the owner on Mar 15, 2024. It is now read-only.
forked from jitsucom/jitsu
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 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
{
"name": "@jitsu/sdk-js",
"version": "2.4.0",
"description": "Jitsu JavaScript SDK (more at http://jitsu.com/docs/js-sdk)",
"main": "javascript-sdk/dist/npm/jitsu.cjs.js",
"module": "javascript-sdk/dist/npm/dist/jitsu.es.js",
"types": "javascript-sdk/dist/npm/jitsu.d.ts",
"files": [
"javascript-sdk/dist/npm/*",
"javascript-sdk/dist/web/*"
],
"repository": {
"type": "git",
"url": "https://github.com/jitsucom/jitsu",
"directory": "javascript-sdk"
},
"publishConfig": {
"access": "public"
},
"private": false,
"author": "Jitsu Dev <dev@jitsu.com>",
"scripts": {
"clean": "rm -rf ./javascript-sdk/dist",
"devserver": "PORT=8081 nodemon --watch '__tests__/common/*.ts' --exec 'ts-node' __tests__/common/devserver.ts",
"test": "rollup -c && jest --detectOpenHandles --verbose false",
"build": "rollup -c"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/*.test.ts"
],
"automock": false,
"verbose": false
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.22",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"fetch-cookie": "^1.0.0",
"jest": "^27.3.1",
"jest-fetch-mock": "^3.0.3",
"jest-playwright-preset": "^1.7.0",
"next": "^12.0.8",
"node-fetch": "^3.1.0",
"nodemon": "^2.0.15",
"playwright": "^1.17.1",
"rollup": "^2.44.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^27.1.2",
"ts-node": "^9.1.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"resolutions": {
}
}