We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 772e5aeCopy full SHA for 772e5ae
.gitignore
@@ -0,0 +1,7 @@
1
+node_modules
2
+.DS_Store
3
+*.swo
4
+*.swp
5
+*.sass-cache
6
+output.md
7
+*.log
.travis.yml
@@ -0,0 +1,5 @@
+language: node_js
+node_js:
+ - '0.10'
+notifications:
+ email: false
README.md
@@ -0,0 +1 @@
+# locker
package.json
@@ -0,0 +1,18 @@
+{
+ "name": "locker",
+ "version": "1.0.0",
+ "description": "",
+ "keywords":[],
+ "main": "",
+ "dependencies": {
8
+ },
9
+ "devDependencies": {
10
+ "mocha":"*",
11
+ "chai":"*"
12
13
+ "scripts": {
14
+ "test": "mocha"
15
16
+ "author": "",
17
+ "license": "MIT"
18
+}
test/index.js
+var should = require('chai').should();
0 commit comments