-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "stackexchange-corpus-builder",
"author": "searleser97",
"version": "2.1.1",
"description": "CLI tool, that helps to build a corpus from stackexchange sites",
"homepage": "https://github.com/searleser97/stackexchange-corpus-builder",
"repository": "github:searleser97/stackexchange-corpus-builder",
"keywords": [
"stackexchange",
"stackoverflow",
"corpus",
"nlp",
"fasttext"
],
"main": "src/index.js",
"bin": {
"stackexchange-corpus-builder": "dist/index.js",
"scb": "dist/index.js"
},
"target": "node",
"scripts": {
"start": "npm run build && node dist/index.js test -h",
"start:dev": "nodemon",
"build": "rimraf ./dist && tsc",
"install:dev": "npm run build && npm uninstall stackexchange-corpus-builder -g && npm install -g",
"test": "echo \"no test specified\" "
},
"license": "GPL-3.0-only",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/diff": "^4.0.2",
"@types/express": "^4.17.6",
"@types/node": "^14.0.14",
"@types/update-notifier": "^4.1.0",
"@types/yargs": "^15.0.5",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"@types/line-reader": "^0.0.33",
"@types/n-readlines": "^1.0.1",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"express": "^4.17.1",
"line-reader": "^0.4.0",
"n-readlines": "^1.0.1",
"playwright-chromium": "^1.9.1",
"update-notifier": "^4.1.0",
"yargs": "^15.4.0"
}
}