-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "heliograph",
"version": "0.0.0",
"description": "Tools to support message passing via async iterators",
"keywords": [],
"homepage": "https://github.com/vinsonchuong/heliograph",
"bugs": "https://github.com/vinsonchuong/heliograph/issues",
"license": "MIT",
"author": "Vinson Chuong <[email protected]>",
"repository": "vinsonchuong/heliograph",
"type": "module",
"browser": {
"./sources/from-web-socket/index.js": "./sources/from-web-socket/index.browser.js"
},
"main": "index.js",
"scripts": {
"test": "xo && ava",
"release": "semantic-release"
},
"dependencies": {
"lodash": "^4.17.21",
"p-event": "^5.0.1",
"pify": "^6.1.0",
"ws": "^8.12.1"
},
"devDependencies": {
"ava": "^5.2.0",
"into-stream": "^7.0.0",
"jsdom": "^21.1.0",
"puppet-strings": "^5.0.1",
"puppet-strings-open-app": "^4.0.3",
"semantic-release": "^20.1.1",
"xo": "^0.53.1"
},
"ava": {
"verbose": true,
"timeout": "1m"
},
"xo": {
"prettier": true,
"space": 2,
"semicolon": false,
"globals": [
"WebSocket"
],
"rules": {
"no-await-in-loop": "off",
"ava/use-t-well": "off",
"import/extensions": "off",
"import/no-anonymous-default-export": "off",
"import/no-useless-path-segments": "off",
"unicorn/import-index": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-array-push-push": "off",
"unicorn/no-new-array": "off"
}
}
}