-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "podcast-data-generator",
"version": "0.0.1",
"description": "Generate Podcast Data",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "npx concurrently \"tsc -w\" \"nodemon out/index.js\"",
"build": "tsc",
"start": "node out/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lbugasu/podcast-data-generator.git"
},
"keywords": [
"podcasts",
"nlp"
],
"author": "Laurence B. Ininda",
"license": "MIT",
"bugs": {
"url": "https://github.com/lbugasu/podcast-data-generator/issues"
},
"homepage": "https://github.com/lbugasu/podcast-data-generator#readme",
"dependencies": {
"@types/js-yaml": "^4.0.4",
"@types/lodash": "^4.14.176",
"@types/ncp": "^2.0.5",
"core-nlp-ner": "0.0.1",
"fs": "^0.0.1-security",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"ncp": "^2.0.0",
"node-fetch": "^2.6.1",
"opml-to-json": "^1.0.1",
"path": "^0.12.7",
"podcast-feed-parser": "^1.0.4",
"rss-parser": "^3.12.0",
"rss-url-parser": "^2.2.2",
"slug": "^5.1.0",
"striptags": "^3.2.0",
"typescript": "^4.4.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/slug": "^5.0.2",
"@types/xml2js": "^0.4.11",
"concurrently": "^6.3.0",
"eslint": "^8.2.0",
"eslint-plugin-json": "^3.1.0",
"json-typescript": "^1.1.2",
"nodemon": "^2.0.15",
"prettier": "^2.4.1"
}
}