-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "podcast-to-sanity",
"version": "1.0.1",
"description": "Import your podcast RSS-feed to Sanity",
"main": "src/podcast-to-sanity.js",
"bin": {
"podcast-to-sanity": "./bin/podcast-to-sanity.js"
},
"scripts": {
"start": "node bin/podcast-to-sanity.js",
"test": "jest",
"clean": "rimraf node_modules",
"lint": "eslint ./src"
},
"jest": {
"testEnvironment": "node"
},
"author": "Knut Melvær <knut@sanity.io",
"license": "MIT",
"dependencies": {
"@sanity/block-tools": "^0.140.12",
"@sanity/client": "^0.140.11",
"@sanity/import": "^0.140.11",
"@sanity/schema": "^0.140.9",
"axios": "^0.18.0",
"chalk": "^2.4.2",
"dotenv": "^7.0.0",
"html2plaintext": "^2.1.2",
"inquirer": "^6.3.1",
"inquirer-autocomplete-prompt": "^1.0.1",
"is-url": "^1.2.4",
"jsdom": "^15.0.0",
"meow": "^5.0.0",
"ora": "^3.4.0",
"rss-parser": "^3.7.0",
"rxjs": "^6.5.1",
"sanitize-html": "^1.20.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-sanity": "^0.140.0",
"eslint-plugin-import": "^2.17.2",
"jest": "^24.7.1",
"rimraf": "^2.6.3"
}
}