-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 826 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 826 Bytes
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
{
"name": "@peter_marklund/json",
"version": "0.0.11",
"description": "A convenient way to work with JSON using JavaScript in the terminal",
"main": "index.js",
"scripts": {
"test:unit": "node --test src/*.test.js",
"test:integration": "./test/run.js",
"test": "npm run test:unit && npm run test:integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter/json.git"
},
"bin": {
"json": "./bin/json.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/peter/json/issues"
},
"homepage": "https://github.com/peter/json#readme",
"dependencies": {
"fast-json-stable-stringify": "^2.1.0",
"json-colorizer": "^3.0.1",
"lodash": "^4.17.23",
"object-diffy": "^1.0.4"
}
}