-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "clean-filename-cli",
"version": "1.1.3",
"description": "Cleanup filenames",
"main": "app.js",
"scripts": {
"presinstall": "npm prune",
"lint": "jshint --show-non-errors",
"test": "mocha ./test/test.js",
"posttest": "npm run lint",
"preshrinkwrap": "rm -rf node_modules/ npm-shrinkwrap.json; npm install; npm dedupe",
"shrinkwrap": "npm shrinkwrap",
"prepublish": "npm shrinkwrap"
},
"repository": {
"type": "git",
"url": "[email protected]:gwendoux/cleanUpFilenameCli.git"
},
"author": "gwendoux",
"license": "ISC",
"bugs": {
"url": "https://github.com/gwendoux/cleanUpFilename/issues"
},
"homepage": "https://github.com/gwendoux/cleanUpFilename",
"dependencies": {
"commander": "^2.8.1",
"copy-paste": "^1.1.3",
"diacritics": "^1.2.2",
"lower-case": "^1.1.2",
"prompt": "^0.2.14",
"urlencode": "^1.1.0"
},
"devDependencies": {
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"must": "^0.13.1"
},
"bin": {
"clean-filename": "./app.js"
},
"directories": {
"test": "test"
},
"keywords": [
"filename",
"cli"
]
}