-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
73 lines (73 loc) · 1.71 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "cronstrue",
"title": "cRonstrue",
"version": "2.51.0",
"description": "Convert cron expressions into human readable descriptions",
"author": "Brady Holt",
"license": "MIT",
"bugs": {
"url": "https://github.com/bradymholt/cronstrue/issues"
},
"homepage": "https://github.com/bradymholt/cronstrue",
"keywords": [
"cron",
"cronjob",
"crontab",
"schedule",
"parser",
"cron expression",
"cron description",
"pretty cron",
"cron for humans",
"cron translated",
"cron english",
"cron schedule",
"cron english",
"cron schedule"
],
"main": "dist/cronstrue.js",
"bin": {
"cronstrue": "bin/cli.js"
},
"typings": "dist/cronstrue.d.ts",
"files": [
"dist/",
"locales/",
"i18n.js",
"i18n.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bradymholt/cronstrue.git"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 120
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"chai": "^4.2.0",
"handlebars": "^4.7.6",
"marked": "^4.0.10",
"mocha": "^10.1.0",
"pixl-xml": "^1.0.13",
"prettier": "^2.1.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typescript": "^4.6.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"xml2js": "^0.5.0"
},
"scripts": {
"start": "npm run build",
"build": "npx tsc -p ./src --emitDeclarationOnly",
"test": "npx mocha --reporter spec --require ts-node/register \"./test/**/*.ts\"",
"prepublishOnly": "rm -rf ./dist && ./node_modules/webpack-cli/bin/cli.js && git add -A"
},
"dependencies": {}
}