-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.42 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@paperist/cli",
"description": "CLI for Paperist",
"author": "3846masa <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Paperist/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Paperist/cli.git"
},
"bugs": {
"url": "https://github.com/Paperist/cli/issues"
},
"version": "0.2.1",
"main": "./dist/index.js",
"bin": {
"paperist": "./cli/index.js"
},
"files": [
"cli",
"dist"
],
"scripts": {
"build": "npm-run-all -s build:src build:pkg",
"build:pkg": "pkg . --out-path ./binaries",
"build:src": "tsc",
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@paperist/remark-latex": "^2.0.0",
"axios": "^0.17.0",
"chalk": "^2.3.0",
"core-decorators": "^0.20.0",
"deepmerge": "^2.0.0",
"dev-null": "^0.1.1",
"diff": "^3.4.0",
"execa": "^0.8.0",
"find-up": "^2.1.0",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"glob-promise": "^3.2.0",
"hosted-git-info": "^2.5.0",
"iconv-lite": "^0.4.19",
"ignore": "^3.3.7",
"js-yaml": "^3.10.0",
"jszip": "^3.1.4",
"listr": "^0.13.0",
"lodash.debounce": "^4.0.8",
"lodash.iserror": "^3.1.1",
"moment": "^2.19.1",
"npm": "^5.5.1",
"remark-parse": "^4.0.0",
"resolve-from": "^4.0.0",
"sane": "^2.2.0",
"simple-git": "^1.80.1",
"tmp-promise": "^1.0.3",
"unified": "^6.1.5",
"update-notifier": "^2.3.0",
"yargs": "^9.0.1"
},
"devDependencies": {
"@paperist/types-remark": "^0.1.3",
"@types/chalk": "^2.2.0",
"@types/deepmerge": "^1.3.2",
"@types/diff": "^3.2.2",
"@types/execa": "^0.7.2",
"@types/find-up": "^2.1.1",
"@types/fs-extra": "^4.0.3",
"@types/glob": "^5.0.33",
"@types/iconv-lite": "^0.0.1",
"@types/js-yaml": "^3.9.1",
"@types/jszip": "^3.1.2",
"@types/lodash.debounce": "^4.0.3",
"@types/lodash.iserror": "^3.1.3",
"@types/moment": "^2.13.0",
"@types/node": "^8.0.44",
"@types/npm": "^2.0.29",
"@types/resolve-from": "^0.0.18",
"@types/sane": "^2.0.0",
"@types/tmp": "^0.0.33",
"@types/update-notifier": "^1.0.2",
"@types/yargs": "^8.0.2",
"npm-run-all": "^4.1.1",
"pkg": "^4.2.5",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
},
"keywords": [
"paperist"
],
"engines": {
"node": ">=7.6.0"
}
}