-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "react-pull-stream",
"version": "2.0.3",
"main": "index.js",
"scripts": {
"deps": "dependency-check package.json && dependency-check package.json --unused --entry test/*.js -i dependency-check -i eslint -i eslint-config-minlint -i tap-spec -i browserify -i wzrd -i tape-run",
"lint": "eslint .",
"preversion": "npm run lint && npm run deps && npm test",
"postversion": "git push && git push --tags && npm publish",
"dev": "wzrd example/index.js -- -dv",
"test": "browserify test/index.js | tape-run | tap-spec"
},
"dependencies": {
"pull-abortable": "^4.1.0",
"pull-notify": "^0.1.1",
"pull-pushable": "^2.0.1",
"pull-stream": "^3.4.5",
"xtend": "^4.0.1"
},
"peerDependencies": {
"react": "^15.3.2"
},
"devDependencies": {
"browserify": "^13.1.1",
"dependency-check": "^2.8.0",
"eslint": "^3.15.0",
"eslint-config-minlint": "^2.0.0",
"react-dom": "^15.3.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"tape-run": "^2.1.4",
"wzrd": "^1.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nichoth/react-pull-stream.git"
},
"author": "nichoth",
"license": "ISC",
"bugs": {
"url": "https://github.com/nichoth/react-pull-stream/issues"
},
"homepage": "https://github.com/nichoth/react-pull-stream#readme",
"description": "Create a duplex stream from a react component.",
"directories": {
"example": "example",
"test": "test"
},
"keywords": [
"react",
"pull",
"stream",
"pull-stream",
"duplex"
]
}