-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.59 KB
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
{
"name": "task-repeater",
"version": "1.3.0",
"description": "A micro JavaScript library for running repetitive time-based tasks",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electather/task-repeater.git"
},
"keywords": [
"Repeat",
"Repetitive",
"Timed",
"Timer",
"Timeout",
"repetitive-tasks"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Omid Astaraki <omid.ocean@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/electather/task-repeater/issues"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"git add"
],
"*.js": "eslint --cache --fix"
},
"homepage": "https://github.com/electather/task-repeater#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^3.3.0",
"@typescript-eslint/eslint-plugin": "4.29.3",
"@typescript-eslint/parser": "4.29.3",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "3.4.1",
"husky": "7.0.2",
"lint-staged": "11.1.2",
"prettier": "2.3.2",
"release-it": "^14.11.5",
"typescript": "^4.4.2"
}
}