-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 959 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
{
"name": "jsonlfmt-cli",
"version": "1.1.0",
"description": "CLI for jsonlfmt",
"main": "cli.mjs",
"type": "module",
"bin": {
"jsonlfmt": "./cli.mjs"
},
"keywords": [
"jsonlines",
"formatter",
"cli"
],
"author": "Yash Singh",
"license": "MIT",
"dependencies": {
"jsonlfmt": "^1.0.0",
"meow": "^10.0.1",
"update-notifier": "^6.0.2"
},
"man": [
"jsonlfmt.1"
],
"homepage": "https://github.com/Yash-Singh1/jsonlfmt-cli#readme",
"bugs": {
"url": "https://github.com/Yash-Singh1/jsonlfmt-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Yash-Singh1/jsonlfmt-cli"
},
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc && mv cli.js cli.mjs && mv test/index.test.js test/index.test.mjs",
"test": "npm run build && node ./test/index.test.mjs"
}
}