-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 856 Bytes
/
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
{
"name": "jscron",
"version": "1.0.0",
"description": "Cron Format Parser And Schedule Dates Generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"keywords": [
"cron",
"schedule",
"scheduled",
"unix"
],
"repository": {
"type": "git",
"url": "https://github.com/romansky/JsCron"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^3.5.11",
"coffee-script": "latest",
"jasmine": "^3.5.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"scripts": {
"build": "tsc",
"prepublish": "yarn build",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"engine": {
"node": ">=0.4.0"
},
"author": {
"name": "Roman Landenband",
"email": "roman.land@gmail.com",
"url": "www.romansky.me"
}
}