Skip to content

Commit

Permalink
Proper package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kizu committed May 16, 2014
1 parent 5d66799 commit 8583f23
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
4 changes: 1 addition & 3 deletions Makefile
@@ -1,6 +1,4 @@
test:
@./node_modules/.bin/mocha \
--require should \
--reporter list
npm test

.PHONY: test
24 changes: 18 additions & 6 deletions package.json
@@ -1,17 +1,29 @@
{
"name": "bemto",
"description": "Smart mixins for writing BEM in Jade",
"version": "0.1.0",
"main": "./bemto.jade",
"author": "Roman Komarov <kizu@kizu.ru>",
"licence": "MIT",
"description": "Smart mixins for writing BEM in Jade",
"keywords": [
"jade",
"bem"
],
"homepage": "https://github.com/kizu/bemto#readme",
"bugs": {
"url": "https://github.com/kizu/bemto/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/kizu/bemto.git"
},
"devDependencies": {
"jade": "0.27.x"
, "mocha": "*"
, "should": "*"
"jade": "1.3.x",
"mocha": "*",
"should": "2.0.x"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require should --reporter list"
},
"author": "Roman Komarov <kizu@kizu.ru>",
"main": "./bemto.jade",
"engines": { "node": "*" }
}

0 comments on commit 8583f23

Please sign in to comment.