-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "preact-pull-stream",
"description": "Create a duplex stream from a preact component",
"version": "0.1.0",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "budo example/index.js --live -- -t babelify",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish",
"test": "browserify test/index.js -t babelify | tape-run"
},
"dependencies": {
"pull-abortable": "^4.1.1",
"pull-notify": "^0.1.1",
"pull-pushable": "^2.1.1",
"pull-stream": "^3.6.1",
"xtend": "^4.0.1"
},
"peerDependencies": {
"preact": "^8.2.5"
},
"devDependencies": {
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^10.0.0",
"budo": "^11.8.4",
"eslint": "^8.35.0",
"eslint-config-minlint": "^2.0.0",
"preact": "^8.2.5",
"pull-cat": "^1.1.11",
"pull-scan": "^1.0.0",
"tape": "^4.8.0",
"tape-run": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nichoth/preact-pull-stream.git"
},
"keywords": [
"preact",
"pull",
"stream",
"pull-stream"
],
"author": "nichoth",
"license": "ISC",
"bugs": {
"url": "https://github.com/nichoth/preact-pull-stream/issues"
},
"homepage": "https://github.com/nichoth/preact-pull-stream#readme"
}