forked from chekun/hexo-excerpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 947 Bytes
/
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
{
"name": "hexo-excerpt",
"version": "1.1.6",
"description": "Automatic excerpt generator for Hexo!",
"main": "index",
"scripts": {
"eslint": "eslint .",
"jscs": "jscs .",
"test": "mocha tests/*.js",
"test-cover": "istanbul cover --print both _mocha -- tests/*.js"
},
"directories": {
"lib": "./lib"
},
"repository": "chekun/hexo-excerpt",
"homepage": "https://chekun.me/post/hexo-excerpt",
"keywords": [
"hexo",
"excerpt"
],
"author": "Kun Che <[email protected]> (https://chekun.me/)",
"license": "MIT",
"dependencies": {
"css-select": "^1.3.0-rc0",
"domutils": "^1.5.1",
"htmlparser2": "^3.9.0",
"lodash.defaults": "^4.2.0"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^5.11.1",
"eslint-config-hexo": "^1.0.2",
"hexo": "^4.2.0",
"istanbul": "^0.4.1",
"jscs": "^3.0.7",
"jscs-preset-hexo": "^1.0.1",
"mocha": "^5.2.0"
}
}