forked from bradymholt/cRonstrue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "cronstrue",
"title": "cRonstrue",
"version": "0.10.9",
"description": "Convert cron expressions into human readable descriptions",
"author": "Brady Holt",
"license": "MIT",
"bugs": {
"url": "https://github.com/bradyholt/cronstrue/issues"
},
"homepage": "https://github.com/bradyholt/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/bradyholt/cronstrue.git"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"chai": "^3.5.0",
"handlebars": "^4.0.6",
"marked": "^0.3.6",
"mocha": "^2.5.3",
"npm-github-release": "^0.7.3",
"octonode": "^0.7.6",
"ts-loader": "^2.0.3",
"ts-node": "^3.0.6",
"typescript": "^2.4.0",
"webpack": "^2.3.2"
},
"scripts": {
"build": "tsc",
"test": "./node_modules/.bin/mocha --reporter spec --compilers ts:ts-node/register",
"prerelease": "rm -rf ./dist && webpack && node ./docs/generate.js README.md && git add -A && git commit --allow-empty -m 'Build latest /dist'",
"release": "npm-github-release"
},
"dependencies": {}
}