-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 735 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 735 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
{
"name": "tauris",
"version": "1.8.2",
"description": "A simple Node.JS argument parser with subcommand support and a beautiful UI",
"main": "index.js",
"types": "index.ts",
"files": [
"index.js"
],
"scripts": {
"build": "tsc",
"prepublish": "yarn build",
"postpublish": "git add . && git commit -m \"chore: compile & publish\"",
"minify": "terser -o index.js --compress passes=128,keep_fargs=false,unsafe_methods=true --mangle --ecma 6 -- index.js"
},
"repository": "https://github.com/codemaster138/node-tauris.git",
"author": "Jake <pygamer138@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.7",
"terser": "^5.12.1",
"typescript": "^4.0.5"
}
}