Skip to content

Commit cc72182

Browse files
committed
First commit
1 parent 0112957 commit cc72182

14 files changed

+3154
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea/
2+
bower_components/
3+
node_modules/
4+
/yarn.lock

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
![http://i.imgur.com/RmD50NR.jpg](http://i.imgur.com/RmD50NR.jpg)
2+
3+
# KhoaiJS
4+
5+
## Install
6+
7+
**Bower**
8+
9+
```bash
10+
bower install --save khoaijs
11+
```

bower.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "khoaijs",
3+
"description": "",
4+
"main": "khoaijs.js",
5+
"authors": [
6+
7+
],
8+
"license": "MIT",
9+
"homepage": "https://github.com/madnh",
10+
"ignore": [
11+
"**/.*",
12+
"node_modules",
13+
"bower_components",
14+
"test"
15+
],
16+
"devDependencies": {
17+
"mocha": "^3.0.2",
18+
"chai": "^3.5.0",
19+
"expect.js": "^0.3.1"
20+
},
21+
"dependencies": {
22+
"lodash": "^4.17.4"
23+
}
24+
}

0 commit comments

Comments
 (0)