-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.36 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
{
"name": "@clappr/retry-utils",
"version": "1.3.2",
"description": "reusable retry logic using exponential backoff pattern",
"main": "./dist/retry-utils.js",
"scripts": {
"test": "jest --coverage --silent",
"build": "webpack",
"build:dev": "webpack",
"start": "webpack serve --open",
"lint": "eslint lib/",
"lint:fix": "eslint lib/ --fix",
"dist": "npm run lint && npm run build && npm run release"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"files": [
"/dist",
"/lib"
],
"keywords": [],
"author": "Clappr team",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"babel-loader": "^8.2.2",
"eslint": "^7.31.0",
"jest": "^27.0.6",
"nock": "^13.1.1",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clappr/retry-utils.git"
},
"bugs": {
"url": "https://github.com/clappr/retry-utils/issues"
},
"homepage": "https://github.com/clappr/retry-utils#readme",
"directories": {
"lib": "lib",
"test": "tests"
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not ie <= 11"
]
}