-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 939 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
{
"name": "valid-json-cli",
"realname": "validjson",
"version": "1.4.1",
"description": "Validate a JSON stream or file",
"main": "index.js",
"bin": {
"validjson": "bin/validate.js"
},
"files": [
"index.js",
"bin/validate.js"
],
"scripts": {
"validjson": "validjson",
"test": "node test/missing.js && node test/index.js && yarn test:stream",
"test:stream": "node ./bin/validate.js < package.json && node ./bin/validate.js package.json"
},
"author": "dotnetcarpenter <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/dotnetcarpenter/validate-json",
"repository": {
"type": "git",
"url": "[email protected]:dotnetCarpenter/validate-json.git"
},
"bugs": "https://github.com/dotnetcarpenter/validate-json/issues",
"keywords": [
"validate",
"json",
"file",
"stream",
"pipe"
],
"engines": {
"node": ">=7.0"
}
}