forked from zaach/jsonlint
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
44 lines (44 loc) · 930 Bytes
/
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
{
"author": "Zach Carter <[email protected]> (http://zaa.ch)",
"name": "jsonlint-mod",
"description": "Validate JSON",
"keywords": [
"json",
"validation",
"lint",
"jsonlint"
],
"version": "1.7.6",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/circlecell/jsonlint.git"
},
"bugs": {
"url": "http://github.com/circlecell/jsonlint/issues"
},
"main": "web/jsonlint.js",
"bin": {
"jsonlint": "lib/cli.js"
},
"engines": {
"node": ">= 0.6"
},
"dependencies": {
"JSV": "^4.0.2",
"chalk": "^2.4.2",
"underscore": "^1.9.1"
},
"devDependencies": {
"test": "*",
"jison": "*",
"uglify-js": "*"
},
"scripts": {
"test": "node test/all-tests.js",
"bundle": "node scripts/bundle > web/jsonlint.js",
"prepublish": "npm run bundle"
},
"homepage": "http://jsonlint.com",
"optionalDependencies": {}
}