-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 1.04 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
{
"name" : "hexo-uncss",
"version" : "0.1.4",
"description" : "uncss plugin for Hexo.",
"keywords" : [ "hexo", "hexo-plugin", "hexo-filter", "uncss", "css", "html" ],
"homepage" : "https://github.com/vseventer/hexo-uncss",
"bugs" : "https://github.com/vseventer/hexo-uncss/issues",
"license" : "MIT",
"author" : "Mark van Seventer <mark@vseventer.com>",
"repository" : { "type": "git", "url": "vseventer/hexo-uncss" },
"main" : "./index.js",
"scripts" : {
"pretest" : "./node_modules/.bin/jshint --reporter=./node_modules/jshint-stylish lib/ test/ *.js",
"test" : "./node_modules/.bin/mocha test/"
},
"dependencies": {
"bluebird" : "3.1.x",
"debug" : "2.2.x",
"minimatch" : "3.0.x",
"object-assign" : "4.0.x",
"stream-to-array" : "2.2.x",
"uncss" : "0.12.x"
},
"devDependencies": {
"jshint" : "2.9.x",
"jshint-stylish" : "2.1.x",
"mocha" : "2.3.x"
},
"engines": { "node" : ">=0.10.x" }
}