Skip to content

Commit 967970f

Browse files
committed
initial commit
0 parents  commit 967970f

File tree

5 files changed

+136
-0
lines changed

5 files changed

+136
-0
lines changed

Diff for: .gitignore

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
### https://raw.github.com/github/gitignore/408c616ae0ad8f4b8101d8e876b9b67ac6b14059/Node.gitignore
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+
# node-waf configuration
22+
.lock-wscript
23+
24+
# Compiled binary addons (http://nodejs.org/api/addons.html)
25+
build/Release
26+
27+
# Dependency directory
28+
# Commenting this out is preferred by some people, see
29+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
30+
node_modules
31+
32+
33+
### https://raw.github.com/github/gitignore/408c616ae0ad8f4b8101d8e876b9b67ac6b14059/Global/JetBrains.gitignore
34+
35+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
36+
37+
*.iml
38+
39+
## Directory-based project format:
40+
.idea/
41+
# if you remove the above rule, at least ignore the following:
42+
43+
# User-specific stuff:
44+
# .idea/workspace.xml
45+
# .idea/tasks.xml
46+
# .idea/dictionaries
47+
48+
# Sensitive or high-churn files:
49+
# .idea/dataSources.ids
50+
# .idea/dataSources.xml
51+
# .idea/sqlDataSources.xml
52+
# .idea/dynamic.xml
53+
# .idea/uiDesigner.xml
54+
55+
# Gradle:
56+
# .idea/gradle.xml
57+
# .idea/libraries
58+
59+
# Mongo Explorer plugin:
60+
# .idea/mongoSettings.xml
61+
62+
## File-based project format:
63+
*.ipr
64+
*.iws
65+
66+
## Plugin-specific files:
67+
68+
# IntelliJ
69+
out/
70+
71+
# mpeltonen/sbt-idea plugin
72+
.idea_modules/
73+
74+
# JIRA plugin
75+
atlassian-ide-plugin.xml
76+
77+
# Crashlytics plugin (for Android Studio and IntelliJ)
78+
com_crashlytics_export_strings.xml
79+
crashlytics.properties
80+
crashlytics-build.properties
81+
82+
83+
# Book build output
84+
_book
85+
86+
# eBook build output
87+
*.epub
88+
*.mobi
89+
*.pdf

Diff for: LICENSE

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

Diff for: README.md

Whitespace-only changes.

Diff for: SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Summary

Diff for: package.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "plugin-design-patterns",
3+
"repository": {
4+
"type": "git",
5+
"url": "https://github.com/azu/plugin-design-patterns.git"
6+
},
7+
"author": "azu",
8+
"email": "[email protected]",
9+
"homepage": "https://github.com/azu/plugin-design-patterns",
10+
"license": "MIT",
11+
"bugs": {
12+
"url": "https://github.com/azu/plugin-design-patterns/issues"
13+
},
14+
"version": "1.0.0",
15+
"description": "JavaScript plugin design pattens book.",
16+
"main": "index.js",
17+
"directories": {
18+
"test": "test"
19+
},
20+
"scripts": {
21+
"test": "echo \"Error: no test specified\" && exit 1"
22+
},
23+
"keywords": [
24+
"plugin",
25+
"extension"
26+
]
27+
}

0 commit comments

Comments
 (0)