-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 878 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 878 Bytes
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
{
"name": "jsq",
"version": "1.0.0",
"description": "Command line tool for repacing all double quoted strings with single quoted strings in a file or directory. Usage: jsq fileOrDirectory [fileOrDirectory [..]]",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Command",
"line",
"single",
"quoted",
"string",
"double",
"quoted",
"string",
"javascript",
"code"
],
"bin": {
"jsq": "./index.js"
},
"author": "Allan Ebdrup",
"license": "MIT",
"dependencies": {
"singlequote": "^1.0",
"findit": "^2.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/Muscula/jsq.git"
},
"bugs": {
"url": "https://github.com/Muscula/jsq/issues"
},
"homepage": "https://github.com/Muscula/jsq#readme"
}