-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 944 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
46
{
"author": "Airton Zanon <me@airton.dev>",
"name": "@codelicia/jsoncs",
"description": "JSON Code Style",
"keywords": [
"json",
"code style",
"code",
"style"
],
"version": "1.2.2",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/codelicia/jsoncs.git"
},
"bugs": {
"url": "http://github.com/codelicia/jsoncs/issues"
},
"main": "lib/cli.js",
"bin": {
"jsoncs": "lib/cli.js"
},
"engines": {
"node": ">= 14.0"
},
"dependencies": {
"commander": "^12.0.0",
"diff": "^7.0.0",
"glob": "^10.0.0"
},
"devDependencies": {
"eslint": "^8.7.0",
"tape": "^5.0.0"
},
"scripts": {
"test": "./node_modules/.bin/tape test/*.js",
"lint": "./node_modules/.bin/eslint ./test ./lib"
},
"homepage": "https://github.com/codelicia/jsoncs#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"license": "MIT"
}