Skip to content

Commit 8966f32

Browse files
authored
Merge pull request #1 from CGWebDev2003/main
Init project
2 parents 3450114 + 23b0767 commit 8966f32

File tree

9 files changed

+117
-0
lines changed

9 files changed

+117
-0
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 4
9+
indent_style = tab
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules/

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Released]
9+
10+
## [0.0.1] - 2023-06-17
11+
12+
Init project

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## How To Contribute
2+
3+
1. [Fork](https://help.github.com/articles/fork-a-repo/) the project
4+
2. Create a new topic branch on your local forked copy
5+
3. Push your topic branch up to your fork
6+
4. Create a [pen](https://codepen.io/) demonstrating what your change will do.
7+
5. [Open a Pull Request](https://help.github.com/articles/about-pull-requests/) with a clear title and description against the `main` branch.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2023 The Neptune Authors
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
13+
all 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
21+
THE SOFTWARE.

SECURITY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
If you discover a security issue in this repository, please contact us with this [email](mailto:[email protected]).
2+
3+
Thanks for helping make our open-source projects safe for everyone, we really appreciate it.

neptune-animations.js

Whitespace-only changes.

package-lock.json

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "neptune-animations",
3+
"version": "0.0.1",
4+
"description": "The official Neptune animation library",
5+
"main": "neptune-animation.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/neptune-css/neptune-animations.git"
12+
},
13+
"keywords": [
14+
"css",
15+
"javascript",
16+
"animation",
17+
"library",
18+
"framework"
19+
],
20+
"author": "Colin Grahm",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/neptune-css/neptune-animations/issues"
24+
},
25+
"homepage": "https://github.com/neptune-css/neptune-animations#readme",
26+
"devDependencies": {
27+
"neptunecss": "^1.1.2",
28+
"neptunecss-js": "^1.2.1"
29+
}
30+
}

0 commit comments

Comments
 (0)