-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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
{
"name": "podcast-api",
"version": "2.0.4",
"description": "JavaScript bindings for the Listen Notes Podcast API",
"main": "src/PodcastApiClient.js",
"scripts": {
"clean": "rm -rf ./.nyc_output ./node_modules/.cache",
"lint": "eslint --ext .js,.jsx .",
"test": "jest --config jest.config.node.json && jest --config jest.config.minifare.json",
"test-node": "jest --config jest.config.node.json",
"test-workers": "jest --config jest.config.minifare.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ListenNotes/podcast-api-js.git"
},
"keywords": [
"Listen Notes",
"podcast",
"api",
"podcast search",
"search engine",
"Cloudflare Workers",
"Node.js"
],
"engines": {
"node": ">=10.*"
},
"author": "Listen Notes, Inc. <hello@listennotes.com> (https://www.listennotes.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ListenNotes/podcast-api-js/issues"
},
"homepage": "https://www.listennotes.com/api/",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"jest": "^26.6.3",
"jest-environment-miniflare": "^2.10.0",
"mocha": "^8.3.2",
"prettier": "^2.2.1"
}
}