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 language: node_js
node_js: node_js:
- "0.10" - 'iojs'
before_script: - '0.12'
- npm install -g grunt-cli - '0.10'

View File

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