Bring npm and bower configurations in line with each other
This commit is contained in:
parent
e80677490a
commit
e7ae7e02de
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,5 @@
|
||||
.idea/
|
||||
.rvmrc
|
||||
*.swp
|
||||
bower_components
|
||||
node_modules
|
||||
|
10
.npmignore
Normal file
10
.npmignore
Normal file
@ -0,0 +1,10 @@
|
||||
**/.*
|
||||
Gemfile
|
||||
Gemfile.lock
|
||||
Gruntfile.js
|
||||
Rakefile
|
||||
bower_components
|
||||
node_modules
|
||||
spec
|
||||
src
|
||||
travis-script.sh
|
13
bower.json
13
bower.json
@ -1,13 +1,15 @@
|
||||
{
|
||||
"name": "jasmine-ajax",
|
||||
"description": "A library for faking Ajax responses in your Jasmine suite.",
|
||||
"version": "2.99.0",
|
||||
"main": "lib/mock-ajax.js",
|
||||
"license": "MIT",
|
||||
|
||||
"homepage": "https://github.com/jasmine/jasmine-ajax",
|
||||
"authors": [
|
||||
"JR Boyens <jboyens@fooninja.org>",
|
||||
"Gregg Van Hove <gregg@slackersoft.net>"
|
||||
],
|
||||
"description": "A library for faking Ajax responses in your Jasmine suite.",
|
||||
"main": "lib/mock-ajax.js",
|
||||
"dependencies": {
|
||||
"jasmine" : "~2.0"
|
||||
},
|
||||
@ -18,19 +20,16 @@
|
||||
"jasmine",
|
||||
"ajax"
|
||||
],
|
||||
"license": "MIT",
|
||||
"ignore": [
|
||||
"**/.*",
|
||||
"Gemfile",
|
||||
"Gemfile.lock",
|
||||
"Gruntfile",
|
||||
"Gruntfile.js",
|
||||
"Rakefile",
|
||||
"app/bower_components",
|
||||
"bower_components",
|
||||
"node_modules",
|
||||
"spec",
|
||||
"test",
|
||||
"tests",
|
||||
"src",
|
||||
"travis-script.sh"
|
||||
]
|
||||
}
|
||||
|
11
package.json
11
package.json
@ -1,11 +1,16 @@
|
||||
{
|
||||
"name": "jasmine-ajax",
|
||||
"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",
|
||||
"private": false,
|
||||
"main": "lib/mock-ajax.js",
|
||||
"license": "MIT",
|
||||
|
||||
"url": "https://github.com/jasmine/jasmine-ajax",
|
||||
"contributors": [
|
||||
"Gregg Van Hove <gregg@slackersoft.net>",
|
||||
"JR Boyens <jboyens@fooninja.org>"
|
||||
],
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jasmine/jasmine-ajax"
|
||||
|
Loading…
Reference in New Issue
Block a user