-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 866 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
{
"name": "quicli-js",
"version": "1.0.0",
"description": "A CLI framework with zero dependencies!",
"author": "Codeah (codeah.nl)",
"license": "Unlicense",
"repository": "thecodeah/quicli",
"homepage": "https://quicli.js.org",
"keywords": [
"cli",
"command-line",
"lightweight"
],
"main": "./lib/quicli.exports.js",
"files": [
"lib/quicli.exports.js"
],
"scripts": {
"build": "tsc -p src/development/ && node chores/build.js",
"release": "tsc -p src/development/ && node chores/release.js",
"docs": "tsc -p src/development/ && node chores/docs.js"
},
"devDependencies": {
"@types/minify": "^6.0.0",
"@types/node": "^14.14.33",
"auto-changelog": "^2.2.1",
"handlebars": "^4.7.7",
"minify": "^7.0.1",
"simple-git": "^3.5.0",
"typedoc": "^0.20.34",
"typescript": "^4.2.3"
}
}