-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "advanced-cli",
"version": "0.1.4",
"description": "a advanced cli arguments parser",
"license": "MIT",
"repository": "[email protected]:remigermain/advanced-cli.git",
"author": "rgermain <[email protected]>",
"bugs": {
"url": "https://github.com/remigermain/advanced-cli/issues"
},
"homepage": "https://github.com/remigermain/advanced-cli#readme",
"main": "dist/index.js",
"typings": "dist/@types/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"bench": "cd ./bench && node ./index.js",
"build:bench": "yarn build && yarn bench",
"build": "cross-env NODE_ENV=production npx rollup -c rollup.config.js",
"build:dev": "cross-env NODE_ENV=dev DEBUG=1 npx rollup -c rollup.config.js",
"lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore src/*",
"lint:fix": "eslint --ext \".js,.vue\" --fix --ignore-path .gitignore src/*",
"clean": "rm -rf dist *.html node_modules/.cache yarn-error.log",
"fclean": "yarn clean && rm -rf node_modules",
"test": "jest"
},
"keywords": [
"cli",
"arg",
"args",
"argument",
"arguments",
"arg parser",
"args parser",
"argument parser",
"arguments parser",
"cli parser"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/cli-color": "^2.0.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"benchmark": "^2.1.4",
"core-js": "^3.18.3",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^1.4.7",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"dependencies": {
"colorette": "^2.0.16"
}
}