forked from devlato/async-wait-until
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
57
58
59
60
61
{
"name": "async-wait-until",
"version": "1.2.4",
"description": "Wait while predicate completes and resolve a Promise",
"main": "src/waitUntil.js",
"types": "src/index.d.ts",
"scripts": {
"test": "NODE_ENV=test jest -u --no-cache --config .jestrc",
"test:coverage": "NODE_ENV=test jest --coverage --no-cache --config .jestrc",
"lint": "eslint --config .eslintrc --ext .js .",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"codeclimate": "cat ./coverage/lcov.info | codeclimate-test-reporter",
"test:report": "npm run coveralls && npm run codeclimate",
"validate": "npm run lint && npm run test:coverage",
"prepush": "npm run validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlato/waitUntil.git"
},
"keywords": [
"apply",
"when",
"lodash",
"async",
"then",
"promise",
"wait",
"timeout",
"interval",
"until",
"for",
"bluebird"
],
"author": "devlato <[email protected]> (https://devlato.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/devlato/waitUntil/issues"
},
"homepage": "https://github.com/devlato/waitUntil#readme",
"files": [
"package.json",
"README.md",
".gitignore",
".editorconfig",
"src"
],
"devDependencies": {
"codeclimate-test-reporter": "0.4.0",
"coveralls": "2.11.15",
"eslint": "3.14.1",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"husky": "0.13.1",
"jest": "18.1.0"
},
"engines": {
"node": ">= 4",
"npm": ">= 2"
}
}