-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"name": "@auttam/easycli",
"version": "1.0.6",
"description": "A quick and easy way of creating cli for your npm package.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc",
"start": "./node_modules/.bin/tsc --watch",
"test": "./node_modules/.bin/mocha --recursive",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auttam/easycli.git"
},
"keywords": [
"cli",
"easy",
"easy-cli",
"quick-cli",
"simple-cli",
"command-line-tool"
],
"author": "Ashish Uttam",
"license": "MIT",
"bugs": {
"url": "https://github.com/auttam/easycli/issues"
},
"homepage": "https://github.com/auttam/easycli#readme",
"dependencies": {
"minimist": "^1.2.0",
"string-width": "^4.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^6.0.112",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"typescript": "^3.5.1"
}
}