-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "@bojanrajkovic/paprika-exporter",
"version": "1.0.0",
"description": "Paprika recipe exporter",
"main": "Main.ts",
"private": false,
"homepage": "https://github.com/bojanrajkovic/paprika-exporter#readme",
"keywords": [
"paprika"
],
"bugs": {
"url": "https://github.com/bojanrajkovic/paprika-exporter/issues"
},
"repository": "github:bojanrajkovic/paprika-exporter",
"scripts": {
"build": "npm install && npx tsc --outDir bin"
},
"bin": {
"paprika-exporter": "./bin/Main.js"
},
"author": "Bojan Rajkovic <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/core-js": "^2.5.3",
"@types/inquirer": "^6.5.0",
"@types/js-yaml": "^3.12.3",
"@types/lodash": "^4.14.192",
"@types/node": "^13.9.5",
"@types/node-fetch": "^2.5.5",
"typescript": "^3.8.3"
},
"dependencies": {
"commander": "^5.0.0",
"core-js": "^3.6.4",
"gray-matter": "^4.0.2",
"inquirer": "^7.1.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"slugify": "^1.4.0",
"winston": "^3.2.1",
"xkeychain": "^0.0.6"
}
}