2
0
Fork 0

added package.json and .gitignore

This commit is contained in:
Willem 2015-02-24 01:19:42 +01:00
parent 0ae5494292
commit e0e9228981
2 changed files with 54 additions and 0 deletions

40
.gitignore vendored Normal file
View 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
View 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"
}
}