Skip to content

Commit 1626755

Browse files
committed
initial commit
0 parents  commit 1626755

12 files changed

+200
-0
lines changed

.editorconfig

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

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.eslintrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["plugin:prettier/recommended"],
3+
"env": {
4+
"es6": true
5+
}
6+
}

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.gitignore

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

.npmrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package-lock = false
2+
progress = false
3+
save-exact = true

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"arrowParens": "always",
3+
"singleQuote": true
4+
}

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## 1.0.0
4+
5+
* Initial release

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Statik
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.

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# html-css-javascript-parcel
2+
3+
Generated by [Statik Project Generator](https://github.com/statikstack/generator-node).
4+
5+
[![License][license-badge]][license-url]
6+
7+
> HTML5 + CSS3 + JavaScript + Parcel.
8+
9+
# Development
10+
11+
* Cloning the repo
12+
13+
```bash
14+
$ git clone https://github.com/statikstack/html-css-javascript-parcel.git
15+
```
16+
17+
* Installing dependencies
18+
19+
```bash
20+
$ npm install
21+
```
22+
23+
* Running scripts
24+
25+
| Action | Usage |
26+
| ------------------------- | -------------- |
27+
| Starting development mode | `npm start` |
28+
| Linting code | `npm run lint` |
29+
30+
# Author
31+
32+
[Statik](https://twitter.com/statikstack)
33+
34+
# License
35+
36+
[MIT](https://github.com/statikstack/html-css-javascript-parcel/blob/master/LICENSE)
37+
38+
[license-badge]: https://img.shields.io/github/license/statikstack/html-css-javascript-parcel.svg
39+
[license-url]: https://opensource.org/licenses/MIT

package.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "html-css-javascript-parcel",
3+
"version": "1.0.0",
4+
"description": "HTML5 + CSS3 + JavaScript + Parcel.",
5+
"author": "Statik <[email protected]>",
6+
"homepage": "https://github.com/statikstack/html-css-javascript-parcel#readme",
7+
"keywords": [
8+
"node"
9+
],
10+
"main": "src/index.js",
11+
"files": [
12+
"src"
13+
],
14+
"scripts": {
15+
"lint": "eslint src/**/*.js",
16+
"start": "node src/index.js"
17+
},
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/statikstack/html-css-javascript-parcel.git"
21+
},
22+
"bugs": {
23+
"url": "https://github.com/statikstack/html-css-javascript-parcel/issues"
24+
},
25+
"dependencies": {},
26+
"devDependencies": {
27+
"eslint": "5.0.1",
28+
"eslint-config-prettier": "2.9.0",
29+
"eslint-plugin-prettier": "2.6.2",
30+
"prettier": "1.13.7"
31+
},
32+
"license": "MIT"
33+
}

src/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)