Skip to content
This repository was archived by the owner on Jul 21, 2020. It is now read-only.

Commit 7351d66

Browse files
committed
Init (split repo)
0 parents  commit 7351d66

12 files changed

+1395
-0
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
end_of_line = lf
8+
indent_style = space
9+
indent_size = 2

.gitignore

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
2+
# Created by https://www.gitignore.io/api/node
3+
4+
### Node ###
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
24+
# nyc test coverage
25+
.nyc_output
26+
27+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
28+
.grunt
29+
30+
# Bower dependency directory (https://bower.io/)
31+
bower_components
32+
33+
# node-waf configuration
34+
.lock-wscript
35+
36+
# Compiled binary addons (http://nodejs.org/api/addons.html)
37+
build/Release
38+
39+
# Dependency directories
40+
node_modules/
41+
jspm_packages/
42+
43+
# Typescript v1 declaration files
44+
typings/
45+
46+
# Optional npm cache directory
47+
.npm
48+
49+
# Optional eslint cache
50+
.eslintcache
51+
52+
# Optional REPL history
53+
.node_repl_history
54+
55+
# Output of 'npm pack'
56+
*.tgz
57+
58+
# Yarn Integrity file
59+
.yarn-integrity
60+
61+
# dotenv environment variables file
62+
.env
63+
64+
65+
# End of https://www.gitignore.io/api/node
66+
67+
/dist
68+
/package-lock.json

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/*
2+
!/dist

package.json

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "@mcph/miix-std",
3+
"version": "0.1.0",
4+
"description": "Standard library for Mixer Interactive controls",
5+
"main": "dist/index.min.js",
6+
"typings": "dist/index.d.ts",
7+
"scripts": {
8+
"test": "npm-run-all --parallel --silent test:lint fmt",
9+
"test:lint": "tslint --type-check --project tsconfig.json '{src,test}/**/*.ts'",
10+
"fmt": "prettier --single-quote --trailing-comma all --parser typescript --print-width 100 --write \"{src,test}/**/*.ts\"",
11+
"build": "npm-run-all --parallel --silent build:ts build:bundle",
12+
"build:ts": "tsc",
13+
"build:bundle": "webpack"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/mixer/miix-std.git"
18+
},
19+
"keywords": [
20+
"mixer",
21+
"miix",
22+
"interactive",
23+
"controls",
24+
"custom"
25+
],
26+
"author": "Connor Peet <[email protected]>",
27+
"license": "MIT",
28+
"bugs": {
29+
"url": "https://github.com/mixer/miix-std/issues"
30+
},
31+
"homepage": "https://github.com/mixer/miix-std#readme",
32+
"dependencies": {
33+
"@types/eventemitter3": "^2.0.2"
34+
},
35+
"devDependencies": {
36+
"awesome-typescript-loader": "^3.2.3",
37+
"npm-run-all": "^4.1.1",
38+
"prettier": "^1.6.1",
39+
"tslint": "^5.7.0",
40+
"tslint-microsoft-contrib": "^5.0.1",
41+
"typescript": "^2.5.2",
42+
"webpack": "^3.5.5"
43+
}
44+
}

0 commit comments

Comments
 (0)