Skip to content

Commit

Permalink
Allow running the tests with npm test
Browse files Browse the repository at this point in the history
Also, make sure `npm install` installs the test dependencies.
  • Loading branch information
mathiasbynens committed Jul 25, 2014
1 parent cccb640 commit 89a4e82
Show file tree
Hide file tree
Showing 3 changed files with 1,276 additions and 1,278 deletions.
69 changes: 38 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,38 @@
{
"name": "css-parser",
"version": "0.1.0",
"description": "Standards-based CSS parser, based on the CSS Syntax spec.",
"keywords": ["css", "parser"],
"author": "Tab Atkins <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/tabatkins/css-parser.git"
},
"main": "index",
"homepage": "https://github.com/tabatkins/css-parser",
"contributors": [
{
"name": "Tab Atkins Jr."
}
],
"bugs": {
"url": "https://github.com/tabatkins/css-parser/issues",
"email": "[email protected]"
},
"dependencies": {},
"devDependencies": {},
"licenses": [
{
"type": "CC0",
"url": "http://github.com/tabatkins/css-parser/raw/master/LICENSE"
}
],
"scripts": {}
}
{
"name": "parse-css",
"version": "0.1.0",
"description": "Standards-based CSS parser, based on the CSS Syntax spec.",
"keywords": [
"css",
"parser"
],
"author": "Tab Atkins <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/tabatkins/parse-css.git"
},
"main": "index",
"homepage": "https://github.com/tabatkins/parse-css",
"contributors": [
{
"name": "Tab Atkins Jr."
}
],
"bugs": {
"url": "https://github.com/tabatkins/parse-css/issues",
"email": "[email protected]"
},
"dependencies": {},
"devDependencies": {
"ansidiff": "^1.0.0"
},
"licenses": [
{
"type": "CC0",
"url": "http://github.com/tabatkins/parse-css/raw/master/LICENSE"
}
],
"scripts": {
"test": "node tests.js"
}
}
Loading

0 comments on commit 89a4e82

Please sign in to comment.