Skip to content

Commit 772e5ae

Browse files
committed
init
0 parents  commit 772e5ae

File tree

5 files changed

+32
-0
lines changed

5 files changed

+32
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
.DS_Store
3+
*.swo
4+
*.swp
5+
*.sass-cache
6+
output.md
7+
*.log

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: node_js
2+
node_js:
3+
- '0.10'
4+
notifications:
5+
email: false

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# locker

package.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "locker",
3+
"version": "1.0.0",
4+
"description": "",
5+
"keywords":[],
6+
"main": "",
7+
"dependencies": {
8+
},
9+
"devDependencies": {
10+
"mocha":"*",
11+
"chai":"*"
12+
},
13+
"scripts": {
14+
"test": "mocha"
15+
},
16+
"author": "",
17+
"license": "MIT"
18+
}

test/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
var should = require('chai').should();

0 commit comments

Comments
 (0)