-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "streamutil",
"version": "1.1.1",
"description": "Helpers for combining streams and promises",
"homepage": "https://github.com/erikman/streamutil",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel --compact true --minified --source-maps false -d dist/ lib",
"lint": "eslint lib",
"test": "mocha --compilers js:babel-core/register test",
"prepublish": "npm run build"
},
"keywords": [
"stream",
"promise"
],
"author": {
"name": "Erik Man",
"email": "goodbyte100@yahoo.com"
},
"license": "MIT",
"repository": "erikman/streamutil",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.15.0",
"eslint-config-xo-space": "^0.15.0",
"mocha": "^3.2.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "^4.17.5"
}
}