forked from yaronassa/asyncCLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
66
{
"name": "yargs-async-cli",
"version": "1.0.2",
"description": "A yargs based async-command CLI",
"scripts": {
"docs": "./node_modules/.bin/typedoc",
"docs:publish": "gh-pages -m \"[ci skip] Updates\" -d ./docs/codeDocumentation",
"test": "./node_modules/.bin/mocha -r ts-node/register --exit test/**/*.spec.ts",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/yaronassa/asyncCLI/"
},
"dependencies": {
"moment": "^2.24.0",
"log4js": "^6.2.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/chai-as-promised": "^7.1.2",
"@types/fs-extra": "^8.1.0",
"@types/log4js": "^2.3.5",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.34",
"@types/yargs": "^15.0.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"fs-extra": "^9.0.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"mocha": "^7.1.0",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/ts-node devTools/processGitHooks.ts preCommit"
}
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"keywords": [
"cli",
"yargs",
"async",
"command"
],
"author": {
"name": "Yaron Assa",
"email": "[email protected]"
},
"license": "ISC"
}