-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.16 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
52
53
54
55
56
57
{
"name": "unicode-escape-convert",
"version": "1.0.0",
"description": "Convert local and remote files containing unicode escapes to characters!",
"main": "cli.js",
"bin": {
"uec": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeDotJS/unicode-escape-convert.git"
},
"keywords": [
"cli",
"cli-app",
"unicode",
"escape",
"unescape",
"change",
"convert",
"local",
"remote",
"text",
"json",
"files",
"regex"
],
"dependencies": {
"chalk": "^2.4.1",
"got": "^8.3.1",
"is-online": "^7.0.0",
"is-url": "^1.2.4",
"log-update": "^2.3.0",
"ora": "^2.1.0",
"unicodechar-string": "^1.0.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"ava": "*",
"xo": "*"
},
"xo": {
"esnext": true
},
"author": "Rishi Giri <rushforlinux@gmail.com> (rishigiri.ml)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeDotJS/unicode-escape-convert/issues"
},
"homepage": "https://github.com/CodeDotJS/unicode-escape-convert#readme"
}