Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 3bf9aff

Browse files
committed
first commit
0 parents  commit 3bf9aff

26 files changed

+6042
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
node_modules
3+
bower_components
4+
coverage
5+
npm-debug.log

.jshintrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"asi": true,
3+
"strict": false,
4+
"undef": true,
5+
"unused": "strict",
6+
"multistr": true
7+
}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Brix BiSheng
2+
3+
<http://bishengjs.com/doc/bisheng.html>

bower.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "brix-bisheng",
3+
"version": "0.0.0",
4+
"authors": [
5+
"墨智 <mozhi.gyy@alibaba-inc.com>"
6+
],
7+
"moduleType": [
8+
"amd"
9+
],
10+
"license": "MIT",
11+
"ignore": [
12+
"**/.*",
13+
"node_modules",
14+
"bower_components",
15+
"test",
16+
"tests"
17+
],
18+
"dependencies": {
19+
"jquery": "~2.1.1",
20+
"handlebars": "~2.0.0",
21+
"underscore": "~1.7.0"
22+
}
23+
}

0 commit comments

Comments
 (0)