-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "toad-scheduler",
"version": "3.0.1",
"license": "MIT",
"description": "In-memory Node.js and browser job scheduler",
"maintainers": [
{
"name": "Igor Savin",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config=jest.config.json",
"test:coverage": "jest --config=jest.config.json --coverage",
"test:karma": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"lint": "eslint \"lib/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "eslint \"lib/**/*.ts\" \"test/**/*.ts\" --fix",
"format": "prettier --write \"{lib,test}/**/*.{js,ts}\" index.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"croner": "^8.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"jasmine-core": "^5.1.1",
"jest": "^29.7.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-typescript": "^5.5.4",
"prettier": "^3.0.0",
"ts-jest": "^29.1.2",
"typescript": "5.2.2"
},
"homepage": "https://github.com/kibertoad/toad-scheduler",
"repository": {
"type": "git",
"url": "git://github.com/kibertoad/toad-scheduler.git"
},
"keywords": [
"schedule",
"scheduler",
"in-memory",
"browser",
"job",
"task"
],
"files": [
"README.md",
"LICENSE",
"dist/*"
]
}