-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 786 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 786 Bytes
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
{
"name": "util.taskify",
"version": "0.1.0",
"description": "util.promisify but for Tasks !",
"main": "index.js",
"repository": "https://github.com/YannickDot/Taskify.git",
"author": "Yannick L. Spark <yannick.l.spark@gmail.com>",
"license": "MIT",
"scripts": {
"test": "exit 0",
"build": "rollup --config rollup.config.prod.js",
"dev": "rollup --config rollup.config.dev.js -w"
},
"keywords": [
"taskify",
"promisify",
"task",
"futures",
"monadic",
"monad"
],
"devDependencies": {
"babel-preset-latest": "^6.24.1",
"jest": "^20.0.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-butternut": "^0.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^3.2.2"
}
}