-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.1 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
43
44
45
46
47
48
49
50
{
"name": "monad-sequence-promise",
"version": "0.0.3",
"description": "Monad sequence to execute async list operation via promise",
"main": "src/monad.js",
"scripts": {
"test": "mocha test/monad/*.test.js",
"doc_readme": "jsdoc2md -v --no-gfm --separators -t ./jsdoc2md/README.hbs ./src/*.js > readme.md",
"run": "set DEBUG=monad.sequence* && node index"
},
"repository": {
"type": "git",
"url": "https://github.com/ORusak/monad-sequence.git"
},
"bugs": {
"url": "https://github.com/ORusak/monad-sequence/issues"
},
"keywords": [
"monad",
"sequence",
"promise",
"chain"
],
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.4.0",
"istanbul": "0.4.1",
"mocha": "2.5.3",
"should": "9.0.0",
"should-sinon": "0.0.5",
"sinon": "1.17.4",
"winston": "2.3.1",
"jsdoc": "~3.4.0",
"jsdoc-to-markdown": "~1.0.3"
},
"dependencies": {
"debug": "2.6.0"
},
"files": [
"src",
"changelog.md",
"readme.md",
"LICENSE"
],
"engines": {
"node": "5.0.0"
},
"author": "Oleg Rusak",
"license": "MIT"
}