Skip to content

Commit 26ee9e1

Browse files
author
featherplain
committed
initialize npm pkg
1 parent 0137cd6 commit 26ee9e1

File tree

4 files changed

+78
-0
lines changed

4 files changed

+78
-0
lines changed

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Numerous always-ignore extensions
2+
*.diff
3+
*.err
4+
*.orig
5+
*.log
6+
*.rej
7+
*.swo
8+
*.swp
9+
*.zip
10+
*.vi
11+
*~
12+
*.sass-cache
13+
*.seed
14+
*.csv
15+
*.dat
16+
*.out
17+
*.pid
18+
*.gz
19+
20+
21+
# OS or Editor folders
22+
.DS_Store
23+
._*
24+
Thumbs.db
25+
.cache
26+
.project
27+
.settings
28+
.tmproj
29+
.esproj
30+
nbproject
31+
.sublime-project
32+
.sublime-workspace
33+
.csscomb.json
34+
package-lock.json
35+
36+
# Folders to ignore
37+
.hg
38+
.svn
39+
.CVS
40+
.idea
41+
.ssh
42+
.grunt
43+
node_modules
44+
dist
45+
lib-cov
46+
lcov.info
47+
pids
48+
logs
49+
results
50+
resources
51+
vendor

.npmignore

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

index.js

Whitespace-only changes.

package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "feathericon-react",
3+
"version": "0.0.1",
4+
"description": "React Component for feathericon",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/feathericon/feathericon-react.git"
12+
},
13+
"keywords": [
14+
"react",
15+
"react-component",
16+
"feathericon",
17+
"icon",
18+
"svg"
19+
],
20+
"author": "featherplain",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/feathericon/feathericon-react/issues"
24+
},
25+
"homepage": "https://github.com/feathericon/feathericon-react#readme"
26+
}

0 commit comments

Comments
 (0)