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",
"description": "wrapper around libsass",
"version": "1.1.4",
"description": "Wrapper around libsass",
"license": "MIT",
"homepage": "https://github.com/sass/node-sass",
"keywords": [
"sass",
"css",
"libsass",
"scss",
"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"
"repository": "sass/node-sass",
"author": {
"name": "Andrew Nesbitt",
"email": "andrewnez@gmail.com",
"url": "http://andrew.github.com"
},
"scripts": {
"install": "node lib/build.js",
"test": "node scripts/test",
"coverage": "node scripts/coverage",
"pretest": "node scripts/lint",
"prepublish": "node scripts/prepublish"
"engines": {
"node": ">=0.10.0"
},
"main": "lib/index.js",
"bin": {
"node-sass": "bin/node-sass"
},
"gypfile": true,
"engines": {
"node": ">=0.10.0"
"scripts": {
"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": {
"chalk": "~0.5.1",
"get-stdin": "~3.0.0",
"chalk": "^0.5.1",
"get-stdin": "^3.0.0",
"meow": "^2.0.0",
"mkdirp": "~0.5.0",
"mocha": "~1.21.5",
"nan": "~1.3.0",
"node-watch": "~0.3.4",
"object-assign": "~1.0.0",
"shelljs": "~0.3.0",
"sinon": "~1.10.3"
"mkdirp": "^0.5.0",
"mocha": "^1.21.5",
"nan": "^1.3.0",
"node-watch": "^0.3.4",
"object-assign": "^1.0.0",
"shelljs": "^0.3.0",
"sinon": "^1.10.3"
},
"devDependencies": {
"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