-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.22 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": "stream-template",
"version": "0.0.10",
"description":
"An ES6 Tagged String Literal tag that can interpolate Node.JS streams, strings, arrays and Promises and produces a stream.,",
"main": "stream-template.js",
"files": ["stream-template.js"],
"scripts": {
"test": "mocha tests.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "https://github.com/almost/stream-template"
},
"keywords": [
"streams",
"stream",
"streaming",
"streams2",
"template",
"taggedliteral",
"literal",
"string",
"es6",
"templating"
],
"author": {
"name": "Thomas Parslow",
"email": "[email protected]",
"url": "http://almostobsolete.net/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/almost/stream-template/issues"
},
"devDependencies": {
"concat-stream": "^1.6.2",
"expect.js": "^0.3.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"mocha": "^2.2.1",
"prettier": "^1.13.5"
},
"dependencies": {
"end-of-stream": "^1.4.1",
"readable-stream": "^2.3.6"
},
"engines": {
"node": ">=4.0.0"
}
}