forked from bradymholt/cRonstrue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "cronstrue",
"title": "cRonstrue",
"version": "1.91.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",
"i18n.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bradymholt/cronstrue.git"
},
"prettier": {
"printWidth": 120
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"handlebars": "^4.1.2",
"marked": "^0.6.2",
"mocha": "^6.1.4",
"npm-check-updates": "^3.1.12",
"npm-github-release": "^0.9.0",
"octonode": "^0.9.5",
"pixl-xml": "^1.0.13",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.35.0",
"webpack-command": "^0.4.2",
"xml2js": "^0.4.19"
},
"scripts": {
"start": "npm run build",
"build": "npx tsc --noEmit",
"test": "npx mocha --reporter spec -r ts-node/register './test/**/*.ts'",
"prerelease": "rm -rf ./dist && npx webpack && npx jbash ./scripts/generate-docs.js && git add -A",
"release": "npx npm-github-release"
},
"dependencies": {}
}