-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "retry-timer",
"version": "1.0.0",
"description": "A simple progressive timer best used to retry something until it is successfull",
"scripts": {
"build": "rimraf lib; babel src -d lib",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"src/**/*.js\"",
"prepare": "npm run-script build"
},
"main": "lib/index.js",
"repository": "https://github.com/squgeim/retry-timer",
"author": "Shreya Dahal <shreyadahal@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-env": "^2.4.1",
"babel-jest": "^22.2.2",
"eslint": "^4.18.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.3.0",
"prettier": "^1.10.2",
"rimraf": "^2.6.2"
},
"keywords": [
"retry",
"timer",
"setTimeout",
"fibonacci",
"periodic",
"sequence",
"progressive"
],
"babel": {
"presets": [
"env",
"jest"
]
}
}