package.json
{
"name": "stylestats",
"version": "7.0.2",
"description": "StyleStats is a small library to collect CSS statistics!",
"author": "Koji Ishimoto <ijok.ijok@gmail.com>",
"contributors": [
{
"name": "1000ch",
"email": "shogo.sensui@gmail.com"
}
],
"bin": {
"stylestats": "bin/cli.js"
},
"main": "lib/stylestats.js",
"repository": {
"type": "git",
"url": "git@github.com:t32k/stylestats.git"
},
"bugs": "https://github.com/t32k/stylestats/issues",
"homepage": "http://www.stylestats.org",
"keywords": [
"css",
"stylesheet",
"performance",
"property"
],
"engines": {
"node": ">=6.x"
},
"files": [
"lib",
"bin",
"assets"
],
"scripts": {
"test": "xo && ava",
"lint": "xo",
"watch": "watch 'npm run lint'"
},
"ava": {
"require": [
"babel-register"
]
},
"xo": {
"space": true,
"esnext": true
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime"
],
"ignore": "test/*.js",
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"dependencies": {
"chalk": "^2.4.1",
"cheerio": "^0.22.0",
"cli-table": "^0.3.1",
"commander": "^2.9.0",
"css": "^2.2.1",
"glob": "^7.1.1",
"gzip-size": "^4.1.0",
"handlebars": "^4.0.6",
"json2csv": "^3.7.3",
"moment": "^2.22.1",
"numeral": "^2.0.6",
"request": "^2.85.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"coveralls": "^2.12.0",
"nyc": "^10.1.2",
"watch": "^1.0.2",
"xo": "^0.20.3"
},
"license": "MIT"
}