-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
45 lines (45 loc) · 903 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
40
41
42
43
44
45
{
"name": "hexo-renderer-stylus",
"version": "3.0.1",
"description": "Stylus renderer plugin for Hexo",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "c8 --reporter=lcovonly --reporter=text npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"index.js"
],
"repository": "hexojs/hexo-renderer-stylus",
"keywords": [
"hexo",
"stylus",
"css",
"style",
"stylesheet",
"styl",
"renderer"
],
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
"license": "MIT",
"dependencies": {
"nib": "^1.2.0",
"stylus": "^0.62.0"
},
"devDependencies": {
"c8": "^8.0.0",
"chai": "^4.3.7",
"eslint": "^8.40.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^7.0.0",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=14"
}
}