Commit fffc0625 by Kevin Martensson

Tweak package.json and remove unneeded files

parent 2fdd4caa
node_modules/
vagrant/
{ {
"author": "Andrew Nesbitt <andrewnez@gmail.com> (http://andrew.github.com)",
"name": "node-sass", "name": "node-sass",
"description": "wrapper around libsass",
"version": "1.1.4", "version": "1.1.4",
"description": "Wrapper around libsass",
"license": "MIT",
"homepage": "https://github.com/sass/node-sass", "homepage": "https://github.com/sass/node-sass",
"keywords": [ "repository": "sass/node-sass",
"sass", "author": {
"css", "name": "Andrew Nesbitt",
"libsass", "email": "andrewnez@gmail.com",
"scss", "url": "http://andrew.github.com"
"style",
"preprocessor"
],
"bugs": {
"url": "https://github.com/sass/node-sass/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sass/node-sass/blob/master/LICENSE"
}
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/sass/node-sass.git"
}, },
"scripts": { "engines": {
"install": "node lib/build.js", "node": ">=0.10.0"
"test": "node scripts/test",
"coverage": "node scripts/coverage",
"pretest": "node scripts/lint",
"prepublish": "node scripts/prepublish"
}, },
"main": "lib/index.js",
"bin": { "bin": {
"node-sass": "bin/node-sass" "node-sass": "bin/node-sass"
}, },
"gypfile": true, "gypfile": true,
"engines": { "scripts": {
"node": ">=0.10.0" "coverage": "node scripts/coverage",
"install": "node lib/build.js",
"prepublish": "node scripts/prepublish",
"pretest": "node_modules/.bin/jshint bin lib test",
"test": "node_modules/.bin/mocha test"
}, },
"files": [
"bin",
"binding.gyp",
"lib",
"src",
"test"
],
"keywords": [
"css",
"libsass",
"preprocessor",
"sass",
"scss",
"style"
],
"dependencies": { "dependencies": {
"chalk": "~0.5.1", "chalk": "^0.5.1",
"get-stdin": "~3.0.0", "get-stdin": "^3.0.0",
"meow": "^2.0.0", "meow": "^2.0.0",
"mkdirp": "~0.5.0", "mkdirp": "^0.5.0",
"mocha": "~1.21.5", "mocha": "^1.21.5",
"nan": "~1.3.0", "nan": "^1.3.0",
"node-watch": "~0.3.4", "node-watch": "^0.3.4",
"object-assign": "~1.0.0", "object-assign": "^1.0.0",
"shelljs": "~0.3.0", "shelljs": "^0.3.0",
"sinon": "~1.10.3" "sinon": "^1.10.3"
}, },
"devDependencies": { "devDependencies": {
"coveralls": "^2.11.1", "coveralls": "^2.11.1",
......
#!/usr/bin/env node
/*jshint shelljs:true */
"use strict";
require("shelljs/make");
var path = require("path");
var JSHINT_BIN = ["node_modules", ".bin", "jshint"].join(path.sep);
exec(JSHINT_BIN + " .");
#!/usr/bin/env node
/*jshint shelljs:true */
"use strict";
require("shelljs/make");
var path = require("path");
var mocha = ["node_modules", ".bin", "mocha"].join(path.sep);
exec(mocha + " test");
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment