Bring npm and bower configurations in line with each other

This commit is contained in:
slackersoft 2014-12-16 18:03:48 -08:00
parent e80677490a
commit e7ae7e02de
4 changed files with 25 additions and 10 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
.idea/ .idea/
.rvmrc .rvmrc
*.swp *.swp
bower_components
node_modules node_modules

10
.npmignore Normal file
View File

@ -0,0 +1,10 @@
**/.*
Gemfile
Gemfile.lock
Gruntfile.js
Rakefile
bower_components
node_modules
spec
src
travis-script.sh

View File

@ -1,13 +1,15 @@
{ {
"name": "jasmine-ajax", "name": "jasmine-ajax",
"description": "A library for faking Ajax responses in your Jasmine suite.",
"version": "2.99.0", "version": "2.99.0",
"main": "lib/mock-ajax.js",
"license": "MIT",
"homepage": "https://github.com/jasmine/jasmine-ajax", "homepage": "https://github.com/jasmine/jasmine-ajax",
"authors": [ "authors": [
"JR Boyens <jboyens@fooninja.org>", "JR Boyens <jboyens@fooninja.org>",
"Gregg Van Hove <gregg@slackersoft.net>" "Gregg Van Hove <gregg@slackersoft.net>"
], ],
"description": "A library for faking Ajax responses in your Jasmine suite.",
"main": "lib/mock-ajax.js",
"dependencies": { "dependencies": {
"jasmine" : "~2.0" "jasmine" : "~2.0"
}, },
@ -18,19 +20,16 @@
"jasmine", "jasmine",
"ajax" "ajax"
], ],
"license": "MIT",
"ignore": [ "ignore": [
"**/.*", "**/.*",
"Gemfile", "Gemfile",
"Gemfile.lock", "Gemfile.lock",
"Gruntfile", "Gruntfile.js",
"Rakefile", "Rakefile",
"app/bower_components",
"bower_components", "bower_components",
"node_modules", "node_modules",
"spec", "spec",
"test", "src",
"tests",
"travis-script.sh" "travis-script.sh"
] ]
} }

View File

@ -1,11 +1,16 @@
{ {
"name": "jasmine-ajax", "name": "jasmine-ajax",
"description": "A library for faking Ajax responses in your Jasmine suite", "description": "A library for faking Ajax responses in your Jasmine suite",
"url": "https://github.com/jasmine/jasmine-ajax",
"main": "lib/mock-ajax.js",
"version": "2.99.0", "version": "2.99.0",
"private": false, "main": "lib/mock-ajax.js",
"license": "MIT", "license": "MIT",
"url": "https://github.com/jasmine/jasmine-ajax",
"contributors": [
"Gregg Van Hove <gregg@slackersoft.net>",
"JR Boyens <jboyens@fooninja.org>"
],
"private": false,
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/jasmine/jasmine-ajax" "url": "https://github.com/jasmine/jasmine-ajax"