-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "cronosjs",
"version": "1.7.1",
"description": "A cron based task scheduler for node and the browser, with extended syntax and timezone support.",
"keywords": [
"cron",
"schedule",
"scheduler",
"timezone support"
],
"scripts": {
"build": "pika build",
"test": "jest"
},
"author": "James Clarke <jaclarke77@gmail.com>",
"license": "ISC",
"repository": "github:jaclarke/cronosjs",
"bugs": "https://github.com/jaclarke/cronosjs/issues",
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.8.3",
"@types/jest": "^27.4.0",
"coveralls": "^3.1.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.2.3"
},
"dependencies": {},
"engines": {
"node": ">=8.0.0"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
}
}