-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "del-expired-file",
"version": "1.0.0",
"description": "delete expired file",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --fix src",
"build": "babel src -d lib",
"build:watch": "npm run build -- --watch",
"test": "npm run build && mocha -t 5000",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wulv/del-expired-file.git"
},
"keywords": [
"delete",
"fs"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wulv/del-expired-file/issues"
},
"homepage": "https://github.com/wulv/del-expired-file#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"istanbul": "^0.4.5",
"mocha": "^5.1.1"
}
}