-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "icebreaker",
"version": "2.0.6",
"description": "pull-stream based library",
"main": "index.js",
"scripts": {
"build": "npm run browserify && npm run dist",
"test": "node scripts/test",
"test-local": "tape test/*.js test/node/*.js",
"test-browser": "zuul --open --local 8087 -- test/*.js",
"test-zuul": "zuul -- test/*.js",
"browserify": "browserify index.js -o dist/icebreaker.js -s icebreaker",
"dist": "uglifyjs dist/icebreaker.js -o dist/icebreaker.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alligator-is/icebreaker.git"
},
"keywords": [
"pull-stream",
"streams",
"icebreaker"
],
"author": "Markus Wunderlin",
"license": "MIT",
"dependencies": {
"is-pull-stream": "0.0.0",
"pull-cat": "^1.1.11",
"pull-notify": "^0.1.1",
"pull-pair": "^1.1.0",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.14",
"stream-to-pull-stream": "^1.7.3"
},
"devDependencies": {
"zuul": "^3.12.0",
"browserify": "^17.0.0",
"tape": "^5.1.1",
"uglify-js": "^3.12.5"
}
}