-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
路50 lines (50 loc) 路 1.17 KB
/
Copy pathpackage.json
File metadata and controls
executable file
路50 lines (50 loc) 路 1.17 KB
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
47
48
49
50
{
"name": "@oresoftware/read.json",
"version": "0.0.109",
"description": "Read JSON values from files or stdin with explicit key-path semantics.",
"main": "dist/index.js",
"bin": {
"read.json": "cli/index.js",
"read_json": "cli/index.js"
},
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node --test test/*.test.js",
"test:e2e": "npm test",
"postinstall": "assets/postinstall.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORESoftware/read.json.git"
},
"keywords": [
"json",
"stdin",
"cli",
"key-path",
"typescript"
],
"author": "TODO Yo.Mama",
"license": "SEE LICENSE IN license.md",
"bugs": {
"url": "https://github.com/ORESoftware/read.json/issues"
},
"homepage": "https://github.com/ORESoftware/read.json#readme",
"dependencies": {
"@oresoftware/shell": "latest",
"chalk": "^2.4.1"
},
"devDependencies": {
"@types/core-js": "^0.9.46",
"@types/node": "^18.19.0",
"typescript": "4.9.5"
},
"engines": {
"node": ">=18"
},
"r2g": {
"test": "npm test"
}
}