-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "promise-more",
"version": "1.0.29",
"description": "A well-tested library for handling Promises with Flow type declarations and carefully thought out API",
"repository": "mhagmajer/promise-more",
"bugs": "https://github.com/mhagmajer/promise-more/issues",
"license": "MIT",
"author": "Marcin Hagmajer",
"keywords": [
"async",
"await",
"bluebird",
"callback",
"flow",
"helpers",
"library",
"module",
"promise",
"q",
"thenable",
"tools",
"utils"
],
"main": "lib/index.js",
"scripts": {
"flow": "flow",
"lint": "eslint .",
"docs": "documentation readme src/** --section=API --config documentation.yml --markdown-toc=true",
"test": "gulp && node lib && jest",
"prepublishOnly": "npm run flow && npm run lint && npm test"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"del": "^3.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.53.1",
"flow-remove-types": "^1.2.1",
"gulp": "^3.9.1",
"gulp-mirror": "^1.0.0",
"gulp-rename": "^1.2.2",
"jest": "^20.0.4",
"through2": "^2.0.3"
}
}