-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 926 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
{
"name": "json-paring-knife",
"author": "Lucas Huang",
"description": "A command line tool for paring keys out of JSON files and writing them to new files",
"version": "1.0.1",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/pt8o/json-paring-knife.git"
},
"homepage": "https://github.com/pt8o/json-paring-knife",
"keywords": [
"json",
"parse",
"cli",
"command line",
"i18n",
"l10n",
"translation",
"internationalization",
"localization"
],
"dependencies": {
"commander": "^11.0.0"
},
"devDependencies": {
"@types/node": "^20.4.5",
"typescript": "^5.1.6"
},
"scripts": {
"json-paring-knife": "node ./dist/index.js",
"jpk": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"json-paring-knife": "./dist/index.js",
"jpk": "./dist/index.js"
}
}