forked from zhangchiqing/bluebird-promisell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.73 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
56
{
"name": "bluebird-promisell",
"version": "0.5.0",
"description": "Functor, Applicative, Traversable, Foldable instances for bluebird Promise",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly --report html",
"test:doc": "node_modules/.bin/doctest --prefix . --nodejs '--harmony' --module commonjs index.js",
"codecov": "npm run test && codecov",
"docs": "npm run test && cp README.md.header README.md && transcribe --url './{filename}#L{line}' -- index.js >> README.md",
"release-major": "xyz --repo [email protected]:zhangchiqing/bluebird-promisell.git --increment major",
"release-minor": "xyz --repo [email protected]:zhangchiqing/bluebird-promisell.git --increment minor",
"release-patch": "xyz --repo [email protected]:zhangchiqing/bluebird-promisell.git --increment patch"
},
"keywords": [
"Promise",
"bluebird",
"functional",
"lift",
"map",
"sequence",
"traverse",
"fold",
"pipe",
"first",
"second"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zhangchiqing/bluebird-promisell.git"
},
"files": [
"index.js"
],
"author": "Leo Zhang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhangchiqing/bluebird-promisell/issues"
},
"homepage": "https://github.com/zhangchiqing/bluebird-promisell#readme",
"peerDependencies": {
"bluebird": ">=2.1.0"
},
"devDependencies": {
"bluebird": "^3.3.5",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"doctest": "^0.10.0",
"istanbul": "^0.4.2",
"jsverify": "^0.7.1",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.0.0",
"transcribe": "^0.3.0",
"xyz": "^0.5.0"
}
}