-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.58 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.58 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "evermark",
"version": "0.9.3",
"description": "A command line tool for syncing markdown files to Evernote 🐘",
"license": "MIT",
"repository": "akuma/evermark",
"author": "Weijia Huang <ihuangwj@gmail.com>",
"bin": {
"evermark": "bin/cli.js"
},
"engines": {
"node": ">=8.0"
},
"scripts": {
"lint": "eslint src/*.js src/**/*.js test/*.js test/**/*.js --quiet --fix",
"validate": "npm run lint && npm outdated --depth 0",
"test": "nyc ava test/*.js",
"test:single": "nyc ava",
"test:watch": "npm test -- --watch",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"bin",
"src",
"themes"
],
"keywords": [
"cli",
"command",
"enml",
"evernote",
"markdown"
],
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^2.4.1",
"cheerio": "^0.22.0",
"commander": "^2.19.0",
"debug": "^4.1.0",
"evernote": "^2.0.5",
"fs-extra": "^7.0.0",
"highlight.js": "^9.9.0",
"inline-css": "^2.2.2",
"markdown-it": "^8.4.2",
"markdown-it-emoji": "^1.3.0",
"markdown-it-enml-todo": "^1.0.2",
"markdown-it-mathjax": "^2.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"mathjax-node": "^0.5.1",
"mermaid.cli": "^0.5.1",
"opn": "^5.0.0",
"ora": "^3.0.0",
"phantomjs": "^2.1.7",
"svg2png": "^4.0.0",
"warehouse": "^2.2.0"
},
"devDependencies": {
"ava": "1.0.0-beta.8",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ghooks": "^2.0.0",
"nyc": "^13.0.1",
"prettier": "^1.14.3",
"rimraf": "^2.5.4",
"sinon": "^6.3.5",
"validate-commit-message": "^3.0.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm test",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease fix your commit message (see http://npm.im/commitizen)\n",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert",
"custom"
]
}
},
"ava": {
"concurrency": 5,
"failFast": true,
"verbose": true
}
}