-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "poll-until-promise",
"version": "4.2.0",
"description": "Try repeatedly for a promise to be resolved",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"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": "tsc",
"lint": "eslint .",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"release": "npm run lint && npm run && npm run build",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"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",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-webpack-plugin": "^3.1.1",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"ts-loader": "^9.2.6"
}
}