-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1016 Bytes
/
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": "handpipe",
"version": "0.11.2",
"description": "Generator based handlebars style streaming templates.",
"main": "handpipe.js",
"scripts": {
"test": "node --harmony node_modules/.bin/tape test/test.js",
"browserify": "browserify -s handpipe handpipe.js > dist/handpipe.js; cat dist/handpipe.js | uglifyjs > dist/handpipe.min.js"
},
"repository": {
"type": "git",
"url": "git://github.com/handpipe/handpipe.js.git"
},
"keywords": [
"template",
"engine",
"stream",
"generators",
"handlebars"
],
"author": "Alan Shaw",
"license": "MIT",
"bugs": {
"url": "https://github.com/handpipe/handpipe.js/issues"
},
"homepage": "https://github.com/handpipe/handpipe.js",
"dependencies": {
"duplexer2": "0.0.2",
"split2": "^0.2.1",
"through2": "^0.6.3"
},
"devDependencies": {
"browserify": "^8.0.3",
"concat-stream": "^1.4.6",
"tape": "^3.0.3",
"uglify-js": "^2.4.15"
},
"engines": {
"node": ">=0.11"
}
}