-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.07 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
{
"name": "jlint",
"version": "3.0.2",
"description": "cli that parses the current JSON you have in your current clipboard",
"main": "index.js",
"scripts": {
"test": "mocha",
"test:coverage": "istanbul cover ./node_modules/.bin/_mocha"
},
"engines": {
"node": ">=4.0.0"
},
"bin": {
"jlint": "cli.js"
},
"files": [
"index.js",
"cli.js"
],
"repository": {
"type": "git",
"url": "git://github.com/srn/jlint"
},
"keywords": [
"jlint",
"json",
"lint",
"jsonlint",
"cli",
"terminal",
"prettify",
"copy",
"paste"
],
"author": "Søren Brokær <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/srn/jlint/issues"
},
"homepage": "https://github.com/srn/jlint",
"dependencies": {
"cardinal": "0.6.0",
"copy-paste": "1.1.4",
"glob": "5.0.15",
"log-symbols": "1.0.2",
"meow": "3.6.0",
"parse-json": "2.2.0",
"update-notifier": "0.5.0"
},
"devDependencies": {
"istanbul": "0.4.0",
"mocha": "2.3.4",
"mock-stdin": "0.3.0"
}
}