-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "data-transport",
"version": "4.5.1",
"description": "A simple and responsible transport",
"main": "lib/index.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"prettier": "prettier src --write",
"build": "yarn clean && tsc --skipLibCheck && yarn build:prod && yarn build:dev",
"build:prod": "NODE_ENV=production rollup --config",
"build:dev": "NODE_ENV=development rollup --config",
"commit": "yarn git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/data-transport.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/data-transport/issues"
},
"homepage": "https://github.com/unadlib/data-transport#readme",
"keywords": [
"data-transport",
"communication",
"iFrame",
"Broadcast",
"Web Worker",
"Service Worker",
"Shared Worker",
"Browser Extension",
"Node.js",
"WebRTC",
"Electron"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/chrome": "^0.0.193",
"@types/firefox-webext-browser": "^94.0.1",
"@types/jest": "^27.4.0",
"@types/node": "^14.6.0",
"@types/simple-peer": "^9.6.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"commitizen": "^4.3.0",
"electron": "^23.1.4",
"eslint": "^9.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.5",
"rimraf": "^3.0.2",
"rollup": "^2.26.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"yargs": "^15.1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"globals": {
"__DEV__": true
}
},
"dependencies": {
"uuid": "^9.0.0"
}
}