-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "greeklish-file-replace",
"version": "1.0.0",
"description": "Search files for Greek characters and replace them with their greeklish equivalents.",
"keywords": [
"greek",
"greeklish",
"file",
"replace",
"search",
"character",
"glob",
"latin",
"english",
"language",
"translate"
],
"author": {
"name": "Kodie Grantham",
"email": "kodie.grantham@gmail.com",
"url": "http://kodieg.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kodie/greeklish-file-replace.git"
},
"bugs": {
"url": "https://github.com/kodie/greeklish-file-replace/issues"
},
"homepage": "https://github.com/kodie/greeklish-file-replace",
"license": "MIT",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "rm -rf test && standard && ava && rm -rf test"
},
"dependencies": {
"diff": "^3.3.0",
"fs-extra": "^4.0.1",
"glob-promise": "^3.1.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"ava": "^0.22.0",
"standard": "^10.0.3"
}
}