-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "self-help",
"description": "Interactive Q&A Guides for Web and the Command Line",
"version": "0.3.2",
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)",
"bin": {
"self-help-interactive": "./dist/bin-interactive.js",
"self-help-markdown": "./dist/bin-markdown.js",
"self-help": "./dist/bin.js"
},
"bugs": "https://github.com/JamieMason/self-help/issues",
"contributors": [],
"dependencies": {
"chalk": "4.0.0",
"commander": "5.0.0",
"fs-extra": "9.0.0",
"inquirer": "7.1.0",
"lodash": "4.17.15",
"marked": "0.8.2",
"marked-terminal": "4.0.0",
"xstate": "4.8.0"
},
"devDependencies": {
"@types/commander": "2.12.2",
"@types/fs-extra": "8.1.0",
"@types/inquirer": "6.5.0",
"@types/jest": "25.2.1",
"@types/lodash": "4.14.149",
"@types/marked": "0.7.3",
"@types/marked-terminal": "3.1.1",
"@types/node": "13.11.0",
"@types/prettier": "2.0.0",
"expect-more-jest": "4.0.0",
"jest": "25.2.7",
"prettier": "2.0.4",
"rimraf": "3.0.2",
"ts-jest": "25.3.1",
"tslint": "6.1.1",
"typescript": "3.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/JamieMason/self-help#readme",
"keywords": [],
"license": "MIT",
"main": "./dist/index.js",
"repository": "JamieMason/self-help",
"scripts": {
"build": "tsc --project .",
"format": "prettier --write './src/**/*.ts'",
"lint": "tslint --fix --project ./tsconfig.json",
"prebuild": "rimraf dist ./test/dist",
"prelint": "npm run format",
"prepack": "npm run build",
"test": "jest"
}
}