added package.json and .gitignore
This commit is contained in:
parent
0ae5494292
commit
e0e9228981
40
.gitignore
vendored
Normal file
40
.gitignore
vendored
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
#
|
||||||
|
# node-ff-assets git ignore rules
|
||||||
|
#
|
||||||
|
|
||||||
|
# Ignore npm files
|
||||||
|
node_modules
|
||||||
|
npm-debug.log
|
||||||
|
|
||||||
|
# Ignore binary files
|
||||||
|
*.o
|
||||||
|
*.class
|
||||||
|
*.old
|
||||||
|
*.bak
|
||||||
|
*.backup
|
||||||
|
*.dat
|
||||||
|
*.data
|
||||||
|
*.gif
|
||||||
|
*.pdf
|
||||||
|
*.doc
|
||||||
|
|
||||||
|
# Ignore ~ backup files.
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Ignore some eclipse files
|
||||||
|
.settings
|
||||||
|
.classpath
|
||||||
|
|
||||||
|
# Ignore netbeans directory
|
||||||
|
nbproject
|
||||||
|
|
||||||
|
# Ignore mac finder files
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Ignore windows files.
|
||||||
|
Thumbs.db
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
|
# Ignore kde dolphin files
|
||||||
|
.directory
|
||||||
|
|
14
package.json
Normal file
14
package.json
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"name": "node-ff-assets",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "Node.js library providing single resource assets.",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "Willem <willem.git.2015@forwardfire.net> (http://forwardfire.net/)",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"dependencies": {
|
||||||
|
"fs-extra": "^0.16.3"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue