-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 980 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
{
"name": "promised-pipe",
"version": "1.1.1",
"description": "Simple async pipe function to mix pure and promise-based functions easily",
"main": "index.dist.js",
"scripts": {
"test": "node ./test.js",
"build": "babel --presets es2015 index.js -o index.dist.js",
"bench": "node benchmark.js",
"postinstall": "npm run build",
"posttest": "npm run bench",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flashhhh/promised-pipe.git"
},
"keywords": [
"pipe",
"async",
"promise",
"fp",
"composition"
],
"author": "Kirill Rogovoy <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/flashhhh/promised-pipe/issues"
},
"homepage": "https://github.com/flashhhh/promised-pipe#readme",
"devDependencies": {
"babel-cli": "6.22.2",
"babel-preset-es2015": "6.22.0",
"blue-tape": "0.2.0",
"pretty-hrtime": "1.0.3"
}
}