minor tweaks

This commit is contained in:
Sindre Sorhus 2015-02-08 20:21:12 +07:00
parent 514e7782a6
commit a860ce1eb9
2 changed files with 17 additions and 23 deletions

View File

@ -1,5 +1,6 @@
sudo: false
language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
- 'iojs'
- '0.12'
- '0.10'

View File

@ -1,19 +1,12 @@
{
"name": "grunt-contrib-jst",
"description": "Precompile Underscore templates to JST file.",
"description": "Precompile Underscore templates to JST file",
"version": "0.7.0-pre",
"homepage": "https://github.com/gruntjs/grunt-contrib-jst",
"author": {
"name": "Grunt Team",
"url": "http://gruntjs.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/gruntjs/grunt-contrib-jst.git"
},
"bugs": {
"url": "https://github.com/gruntjs/grunt-contrib-jst/issues"
},
"repository": "gruntjs/grunt-contrib-jst",
"licenses": [
{
"type": "MIT",
@ -27,24 +20,24 @@
"test": "grunt test"
},
"dependencies": {
"lodash": "~2.4.1",
"chalk": "~0.5.0"
"chalk": "^0.5.1",
"lodash": "^2.4.1"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-internal": "~0.4.5",
"grunt": "~0.4.2"
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-internal": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1"
},
"peerDependencies": {
"grunt": "~0.4.0"
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin"
],
"files": [
"tasks",
"LICENSE-MIT"
"tasks"
]
}