-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "@electricui/protocol-binary-fifo-queue",
"version": "0.9.6",
"description": "ElectricUI Binary Protocol FIFO Queue",
"electricui-dev": true,
"author": "Electric UI <[email protected]> (https://electricui.com)",
"license": "SEE LICENCE IN LICENCE",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"publishConfig": {
"main": "lib/cjs/index.eui.js",
"module": "lib/esm/index.eui.js"
},
"sideEffects": false,
"types": "lib/types/index.d.ts",
"files": [
"lib/**/*",
"manifest.json"
],
"dependencies": {
"@electricui/async-utilities": "workspace:*",
"@electricui/core": "workspace:*",
"@electricui/protocol-binary-constants": "workspace:*",
"better-queue": "^3.8.10",
"bluebird": "^3.5.3",
"debug": "^4.3.4",
"deepmerge": "^4.1.1",
"memoize-one": "^5.0.0",
"rxjs": "^6.4.0",
"xstate": "^4.3.2"
},
"devDependencies": {
"@electricui/build-rollup-config": "workspace:*",
"@electricui/jest-config": "workspace:*",
"@jest/globals": "^26.6.2",
"@sinonjs/fake-timers": "^7.1.2",
"@types/bluebird": "^3.5.25",
"@types/chai": "^4.1.7",
"@types/chai-subset": "^1.3.2",
"@types/debug": "^4.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^16.11.7",
"@types/sinon": "^7.0.6",
"@types/sinonjs__fake-timers": "^6.0.3",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"jest": "^29.2.1",
"jest-circus": "^29.2.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "3.26.2",
"sinon": "^7.2.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.0.3",
"typescript": "4.8.3"
},
"scripts": {
"prepack": "silversmith prepack",
"postpack": "silversmith postpack",
"build": "rm -rf ./lib && rollup -c --bundleConfigAsCjs",
"test": "jest --runInBand",
"watch": "jest --watch"
}
}