-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "cron-emitter",
"version": "2.0.0",
"description": "An event emitter for registering scheduled events in crontab format",
"main": "build/cron-emitter.js",
"private": false,
"directories": {
"test": "test",
"build": "build"
},
"scripts": {
"pretest": "mkdir -p build && babel lib --out-dir build --presets=es2015 --source-maps",
"test": "run-p test:*",
"test:node": "NODE_ENV=test nyc --reporter=text --reporter=lcov mocha **/*test.js",
"test:browser": "NODE_ENV=test testem ci"
},
"repository": {
"type": "git",
"url": "[email protected]:tfmalt/node-cron-emitter.git"
},
"keywords": [
"cron",
"scheduler",
"event",
"emitter"
],
"author": {
"name": "Thomas Malt",
"email": "<[email protected]>"
},
"license": "MIT",
"dependencies": {
"cron-parser": "^2.3.1",
"events": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.1",
"eslint": "^3.13.1",
"eslint-plugin-mocha": "^4.9.0",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.1.2",
"testem": "^1.18.0"
},
"engines": {
"node": ">= 6.10.x",
"npm": ">= 3.10.x"
}
}