-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@cloudcmd/rename-files",
"version": "2.0.0",
"description": "rename files",
"main": "lib/rename-files.js",
"scripts": {
"wisdom": "npm run build",
"watch:coverage": "npm run watcher -- npm run coverage",
"watch:test": "npm run watcher -- npm test",
"watcher": "nodemon -w test -w lib --exec",
"test": "tape test/*.js",
"coverage": "nyc npm test",
"report": "nyc report --reporter=text-lcov | coveralls",
"lint:lib": "eslint lib",
"lint:test": "eslint test -c .eslintrc.test",
"lint": "redrun lint:*"
},
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.0.0",
"eslint-plugin-node": "^6.0.1",
"memfs": "^2.8.0",
"mock-require": "^3.0.2",
"nodemon": "^1.11.0",
"nyc": "^12.0.2",
"readjson": "^1.1.4",
"redrun": "^6.0.0",
"rimraf": "^2.6.2",
"tape": "^4.2.0",
"try-catch": "^2.0.0",
"try-to-catch": "^1.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/cloudcmd/rename-files.git"
},
"keywords": [
"rename",
"files"
],
"author": "coderaiser <[email protected]> (http://coderaiser.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudcmd/rename-files/issues"
},
"homepage": "https://github.com/cloudcmd/rename-files"
}