adds gitignore & npm package.json
This commit is contained in:
commit
42fcee1a93
2 changed files with 44 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
node_modules
|
||||
*.swo
|
||||
*.swp
|
||||
.DS_Store
|
||||
.env
|
||||
39
package.json
Normal file
39
package.json
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"name": "npr-one",
|
||||
"version": "0.1.0",
|
||||
"description": "Node.js NPR One API client",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "gulp test"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/adafruit/npr_one.git"
|
||||
},
|
||||
"keywords": [
|
||||
"npr",
|
||||
"one",
|
||||
"national",
|
||||
"public",
|
||||
"radio"
|
||||
],
|
||||
"author": "Todd Treece <todd@uniontownlabs.org>",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/adafruit/npr_one/issues"
|
||||
},
|
||||
"homepage": "https://github.com/adafruit/npr_one#readme",
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.0",
|
||||
"gulp-jshint": "^1.11.2",
|
||||
"gulp-mocha": "^2.1.3",
|
||||
"jshint-stylish": "^2.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"bunyan": "^1.4.0",
|
||||
"chalk": "^1.1.0",
|
||||
"dotenv": "^1.2.0",
|
||||
"es6-shim": "^0.32.2",
|
||||
"swagger-client": "^2.1.2"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue