mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
initialize
This commit is contained in:
commit
6d31c7ced9
6 changed files with 23 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.settings.xml
|
0
History.md
Normal file
0
History.md
Normal file
0
README.md
Normal file
0
README.md
Normal file
1
index.js
Normal file
1
index.js
Normal file
|
@ -0,0 +1 @@
|
|||
module.exports = require('./lib/sherlock');
|
0
lib/sherlock.js
Normal file
0
lib/sherlock.js
Normal file
21
package.json
Normal file
21
package.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"author": "Jake Luer <jake@alogicalparadox.com>",
|
||||
"name": "sherlock",
|
||||
"description": "Assertion framework for node.js and the browser.",
|
||||
"version": "0.1.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@github.com:logicalparadox/sherlock.git"
|
||||
},
|
||||
"main": "index",
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4.0"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"matcha": "0.3.0"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue