cppcheck/htdocs/package.json

47 lines
1010 B
JSON
Raw Normal View History

{
"name": "cppcheck-web",
"version": "0.2.0",
"author": "XhmikosR (https://github.com/XhmikosR)",
"description": "The dependencies to build cppcheck's website",
"homepage": "https://github.com/danmar/cppcheck",
"repository": {
"type": "git",
"url": "https://github.com/danmar/cppcheck.git"
},
"bugs": {
"url": "http://sourceforge.net/apps/trac/cppcheck/wiki"
},
"license": "GPLv3",
"main": "make.js",
"scripts": {
"lint": "node run-tests"
},
"dependencies": {
2014-03-16 11:39:03 +01:00
"clean-css": "~2.1.6",
2013-12-26 17:36:28 +01:00
"csslint": "~0.10.0",
2014-03-16 11:39:03 +01:00
"jshint": "~2.4.4",
2013-08-29 07:02:21 +02:00
"shelljs": "~0.2.6",
2014-03-16 11:39:03 +01:00
"uglify-js": "~2.4.13"
},
"jshintConfig": {
"camelcase": true,
"curly": true,
"eqeqeq": true,
2014-03-16 11:39:03 +01:00
"forin": true,
"indent": 4,
"latedef": true,
"noarg": true,
"node": true,
"noempty": true,
"quotmark": "double",
"shelljs": true,
2013-08-29 07:09:11 +02:00
"strict": true,
"trailing": true,
2014-03-16 11:39:03 +01:00
"undef": true,
"unused": true
},
"engines": {
2013-08-29 07:02:21 +02:00
"node": ">=0.8.0"
}
}