forked from moqada/hubot-schedule-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.98 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
{
"name": "@moqada/hubot-schedule-helper",
"description": "Helper of Hubot Scripts for implementing schedule tasks",
"version": "1.0.0",
"author": "moqada <[email protected]>",
"bugs": {
"url": "https://github.com/moqada/hubot-schedule-helper/issues"
},
"dependencies": {
"cron-parser": "^2.0.0",
"node-schedule": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^7.0.0",
"babel-plugin-espower": "^2.1.1",
"babel-preset-es2015": "^6.5.0",
"chokidar-cli": "^1.2.0",
"clear-require": "^2.0.0",
"codecov": "^2.1.0",
"esdoc": "^0.5.2",
"eslint": "^3.0.0",
"eslint-config-moqada": "^18.0.0",
"gh-pages": "^0.12.0",
"isparta": "^4.0.0",
"mocha": "^3.0.0",
"npm-run-all": "^4.0.0",
"power-assert": "^1.2.0",
"sinon": "^2.1.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/moqada/hubot-schedule-helper#readme",
"keywords": [
"cron",
"helper",
"hubot",
"schedule"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/moqada/hubot-schedule-helper.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"codecov": "codecov",
"deploy": "npm-run-all doc gh-pages",
"doc": "esdoc -c esdoc.json",
"gh-pages": "gh-pages -d doc",
"lint": "eslint --cache {src,test}",
"postpublish": "npm run deploy",
"prebuild": "rm -rf lib",
"predoc": "rm -rf doc",
"prepublish": "git diff --exit-code && npm run --if-present build",
"pretest": "rm -rf coverage",
"test": "npm-run-all lint test:coverage",
"test:coverage": "babel-node $(npm bin)/isparta cover --report text --report html --report lcovonly _mocha -- test/{**/,}*spec.js",
"watch": "npm-run-all --parallel watch:*",
"watch:lint": "chokidar src test -c 'npm run -s lint'",
"watch:src": "babel --out-dir=lib --watch src",
"watch:test": "mocha --watch test/{**/,}*spec.js"
}
}