-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.68 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
{
"name": "passing-notes",
"version": "0.0.0",
"description": "Build an HTTP server out of composable blocks",
"keywords": [],
"homepage": "https://github.com/vinsonchuong/passing-notes",
"bugs": "https://github.com/vinsonchuong/passing-notes/issues",
"license": "MIT",
"author": "Vinson Chuong <[email protected]>",
"type": "module",
"main": "index.js",
"browser": "index.browser.js",
"bin": {
"pass-notes": "./bin.js"
},
"repository": "vinsonchuong/passing-notes",
"scripts": {
"test": "xo && ava",
"release": "semantic-release"
},
"dependencies": {
"get-port": "^7.1.0",
"get-stream": "^9.0.1",
"heliograph": "^7.0.0",
"hot-esm": "^1.6.0",
"httpx-server": "^2.0.0",
"indent-string": "^5.0.0",
"lodash": "^4.17.21",
"make-cert": "^1.2.1",
"p-event": "^6.0.1",
"pretty-ms": "^9.1.0",
"puff-pastry": "^1.3.2",
"type-is": "^1.6.18"
},
"devDependencies": {
"ava": "^6.1.3",
"ava-patterns": "^3.2.1",
"into-stream": "^8.0.1",
"passing-notes-ui": "^1.4.0",
"puppet-strings": "^5.0.3",
"puppet-strings-chrome": "^2.0.4",
"quick-install": "^2.0.3",
"semantic-release": "^24.1.0",
"strip-indent": "^4.0.0",
"why-is-node-running": "^3.2.0",
"ws": "^8.18.0",
"xo": "^0.59.3"
},
"ava": {
"verbose": true,
"timeout": "5m"
},
"xo": {
"prettier": true,
"space": 2,
"semicolon": false,
"envs": [
"browser"
],
"rules": {
"ava/use-t-well": "off",
"import/no-anonymous-default-export": "off",
"unicorn/prefer-event-target": "off",
"no-async-promise-executor": "off"
}
},
"packageManager": "[email protected]"
}