-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 907 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
45
{
"name": "esjson",
"version": "1.1.1",
"description": "JSON Schema validator (cli)",
"main": "src/index.js",
"bin": {
"esjson": "bin/esjson.js"
},
"scripts": {
"start": "node bin/esjson.js",
"lint": "rome check",
"test": "uvu",
"coverage": "c8 --check-coverage npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marcisbee/esjson.git"
},
"keywords": [
"json",
"schema",
"validator",
"fast",
"cli"
],
"author": "Marcis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marcisbee/esjson/issues"
},
"homepage": "https://github.com/Marcisbee/esjson#readme",
"devDependencies": {
"c8": "^7.3.5",
"rome": "^10.0.4-beta",
"uvu": "^0.5.1"
},
"files": [
"bin",
"src"
],
"dependencies": {
"arg": "^5.0.0",
"colorette": "^1.2.1"
}
}