Skip to content

Commit b516107

Browse files
committed
Initial commit
0 parents  commit b516107

40 files changed

+10534
-0
lines changed

.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": [ ["es2015", { "loose": true }], "react" ]
3+
}

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.DS_Store
2+
3+
# Logs
4+
logs
5+
*.log
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
18+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
19+
.grunt
20+
21+
# Compiled binary addons (http://nodejs.org/api/addons.html)
22+
build/Release
23+
24+
# Dependency directory
25+
# Commenting this out is preferred by some people, see
26+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
27+
node_modules
28+
29+
# Users Environment Variables
30+
.lock-wscript
31+
32+
dist/

.istanbul.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
verbose: false
2+
instrumentation:
3+
root: ./lib/
4+
include-all-sources: true
5+
reporting:
6+
print: summary
7+
reports:
8+
- html
9+
- text
10+
- lcov
11+
watermarks:
12+
statements: [50, 80]
13+
lines: [50, 80]
14+
functions: [50, 80]
15+
branches: [50, 80]

.npmignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.editorconfig
2+
.jshintrc
3+
.travis.yml
4+
.istanbul.yml
5+
.babelrc
6+
.idea/
7+
.vscode/
8+
test/
9+
coverage/
10+
.github/

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: node_js
2+
node_js:
3+
- 'node'
4+
- '6'
5+
addons:
6+
code_climate:
7+
repo_token: 'your repo token'
8+
notifications:
9+
email: false
10+
before_script:
11+
- npm install -g codeclimate-test-reporter
12+
after_script:
13+
- codeclimate-test-reporter < coverage/lcov.info

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Feathers
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

README.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# mysam-ui
2+
3+
[![Build Status](https://travis-ci.org/mysamai/mysam-ui.png?branch=master)](https://travis-ci.org/mysamai/mysam-ui)
4+
[![Code Climate](https://codeclimate.com/github/mysamai/mysam-ui/badges/gpa.svg)](https://codeclimate.com/github/mysamai/mysam-ui)
5+
[![Test Coverage](https://codeclimate.com/github/mysamai/mysam-ui/badges/coverage.svg)](https://codeclimate.com/github/mysamai/mysam-ui/coverage)
6+
[![Dependency Status](https://img.shields.io/david/mysamai/mysam-ui.svg?style=flat-square)](https://david-dm.org/mysamai/mysam-ui)
7+
[![Download Status](https://img.shields.io/npm/dm/mysam-ui.svg?style=flat-square)](https://www.npmjs.com/package/mysam-ui)
8+
9+
> A MySam web frontend for mysam-core built with React
10+
11+
## Installation
12+
13+
```
14+
npm install mysam-ui --save
15+
```
16+
17+
## License
18+
19+
Copyright (c) 2017
20+
21+
Licensed under the [MIT license](LICENSE).

assets/fonts/mySam.eot

2.24 KB
Binary file not shown.

assets/fonts/mySam.svg

+14
Loading

assets/fonts/mySam.ttf

2.09 KB
Binary file not shown.

assets/fonts/mySam.woff

2.16 KB
Binary file not shown.

assets/svg/icon-checkmark.svg

+9
Loading

assets/svg/icon-microphone.svg

+14
Loading

assets/svg/icon-mySam-icon.svg

+35
Loading

assets/svg/icon-processing.svg

+13
Loading
+1
Loading

assets/svg/loading-screen-background.svg

+1
Loading

0 commit comments

Comments
 (0)