-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (38 loc) · 962 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": "ppj",
"version": "1.0.5",
"description": "Pretty print JSON`",
"author": "Federico Vitale (hi@fedevitale.dev) <https://fedevitale.dev>",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"prebuild": "babel src -d build --extensions '.ts,.js'",
"build": "pkg build/index.js -o=dist/ppj",
"postbuild": "rimraf build"
},
"bin": {
"pretty-print": "./dist/ppj",
"ppj": "./dist/ppj"
},
"keywords": [
"json",
"prettyPrint",
"parser"
],
"dependencies": {
"chalk": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/node": "^14.14.7",
"babel-loader": "^8.2.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"pkg": "^4.4.9",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
}
}