-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1020 Bytes
/
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
{
"name": "cron-file-cleaner",
"version": "1.1.0",
"description": "Remove old files periodically",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha -R spec",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 5000"
},
"repository": {
"type": "git",
"url": "git://github.com/pdaether/file-cleaner.git"
},
"keywords": [
"delete",
"files",
"periodically",
"cron"
],
"author": "Patrick Daether <[email protected]> (http://www.pd-digital.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pdaether/file-cleaner/issues"
},
"dependencies": {
"cron": "~1.0.6"
},
"devDependencies": {
"mock-fs": "~3.4.0",
"mocha": "~2.3.3",
"chai": "~3.3.0",
"istanbul": "~0.4.0",
"mocha-jshint": "2.2.5",
"coveralls": "~2.11.2"
}
}