-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "qwikipedia",
"version": "0.0.10",
"description": "Script to read a Wiki page extract in the shell w/ menu navigation to sections",
"main": "dist/cli.js",
"repository": "https://github.com/faizan-ali/quickwiki",
"scripts": {
"clean": "rm -rf node_modules ",
"clean-install": "npm run clean && npm install",
"lint": "tslint './src/**/*.ts' -p . -c tslint.json",
"start": "clear && node dist/index.js $1",
"integration": "clear; npm run build && mocha --harmony ./dist/test/integration/**/*.js",
"unit": "clear; mocha --harmony .dist/test/unit/**/*.js",
"test": "clear; mocha --harmony ./dist/test/**/*.js",
"watch": "rm -rf ./dist && tsc --watch"
},
"author": "Faizan Ali",
"license": "MIT",
"bin": {
"wiki": "dist/cli.js"
},
"dependencies": {
"chalk": "^2.4.1",
"htmlparser2": "^3.9.2",
"node-fetch": "^2.1.2",
"terminal-kit": "^1.17.12",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/htmlparser2": "^3.7.31",
"@types/node": "^10.3.3",
"@types/node-fetch": "^2.1.1",
"tslint": "^5.10.0"
}
}