-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "worker-ws-client",
"version": "0.0.1",
"description": "worker for websocket",
"main": "dist/worker-ws-client.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:doc": "jsdoc2md -t ./README.hbs ./src/index.js > README.md",
"test": "npm run build && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/ciqtek/worker-ws-client.git"
},
"keywords": [
"webworker",
"websocket"
],
"files": [
"dist",
"types",
"src"
],
"author": "国仪量子(合肥)技术有限公司([email protected])",
"license": "null",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/runtime-corejs3": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-html": "^0.2.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"jsdoc-to-markdown": "^7.0.1",
"jsdom-worker": "^0.2.1",
"node-fetch": "^2.6.1",
"rollup": "^2.53.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-web-worker-loader": "^1.6.1",
"typescript": "^4.3.5"
}
}