forked from AlonMiz/poll-until-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "poll-until-promise",
"version": "3.5.0",
"description": "Try repeatedly for a promise to be resolved",
"main": "lib/poll-until-promise.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlonMiz/poll-until-promise.git"
},
"bugs": {
"url": "https://github.com/AlonMiz/poll-until-promise"
},
"homepage": "https://github.com/AlonMiz/poll-until-promise#readme",
"scripts": {
"build": "cross-env WEBPACK_ENV=build webpack",
"lint": "cross-env eslint src/",
"lint:fix": "cross-env eslint src/ --fix",
"dev": "cross-env WEBPACK_ENV=dev webpack --progress --colors --watch",
"test": "cross-env NODE_ENV=test jest",
"test:coverage": "cross-env jest --coverage && cat ./coverage/lcov.info | coveralls",
"release": "npm run lint && npm run test:coverage && npm run build"
},
"contributors": [
{
"name": "Alon Mizrahi",
"url": "https://github.com/AlonMiz"
},
{
"name": "Eden Turgeman",
"email": "[email protected]",
"url": "https://github.com/EdenTurgeman"
}
],
"keywords": [
"wait",
"until",
"promise",
"test"
],
"author": "Alon Mizrahi",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"coveralls": "^3.0.9",
"cross-env": "7.0.2",
"babel-loader": "8.0.6",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-loader": "3.0.3",
"eslint-plugin-import": "2.20.1",
"jest": "25.1.0",
"nyc": "15.0.0",
"webpack": "4.42.0",
"webpack-cli": "^3.3.11"
},
"nyc": {
"reporter": [
"text",
"text-summary",
"lcov",
"html"
],
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": true
}
}