forked from bradymholt/cRonstrue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "cronstrue",
"title": "cRonstrue",
"version": "1.40.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",
"typings": "dist/cronstrue.d.ts",
"files": [
"dist/",
"i18n.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bradymholt/cronstrue.git"
},
"prettier": {
"printWidth": 120
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"handlebars": "^4.0.11",
"marked": "^0.3.19",
"mocha": "^5.1.1",
"npm-github-release": "^0.9.0",
"octonode": "^0.9.2",
"ts-loader": "^3.2.0",
"ts-node": "^5.0.1",
"typescript": "^2.8.3",
"webpack": "^3.10.0",
"xml2js": "^0.4.19"
},
"scripts": {
"build": "npx tsc",
"test": "npx mocha --reporter spec --compilers ts:ts-node/register",
"prerelease": "rm -rf ./dist && webpack && node ./docs/generate.js README.md && git add -A",
"release": "npx npm-github-release"
},
"dependencies": {}
}