-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matthew Marcum
committed
Dec 2, 2014
1 parent
0d44a28
commit 62f294d
Showing
9 changed files
with
67 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"predef": [ | ||
"document", | ||
"window", | ||
"-Promise" | ||
], | ||
"browser": true, | ||
"boss": true, | ||
"curly": true, | ||
"debug": false, | ||
"devel": true, | ||
"eqeqeq": true, | ||
"evil": true, | ||
"forin": false, | ||
"immed": false, | ||
"laxbreak": false, | ||
"newcap": true, | ||
"noarg": true, | ||
"noempty": false, | ||
"nonew": false, | ||
"nomen": false, | ||
"onevar": false, | ||
"plusplus": false, | ||
"regexp": false, | ||
"undef": true, | ||
"sub": true, | ||
"strict": false, | ||
"white": false, | ||
"eqnull": true, | ||
"esnext": true, | ||
"unused": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* jshint node: true */ | ||
'use strict'; | ||
|
||
module.exports = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"name": "sl-ember-model", | ||
"version": "0.1.0", | ||
"description": "Ember CLI Addon - Data Model", | ||
"directories": { | ||
"doc": "doc", | ||
"test": "tests" | ||
}, | ||
"scripts": { | ||
"start": "ember server", | ||
"build": "ember build", | ||
|
@@ -14,37 +16,38 @@ | |
"engines": { | ||
"node": ">= 0.10.0" | ||
}, | ||
"keywords": [ | ||
"ember-addon", | ||
"model", | ||
"data" | ||
], | ||
"ember-addon": { | ||
"configPath": "tests/dummy/config" | ||
}, | ||
"authors": [ | ||
"Matthew Marcum <[email protected]>", | ||
"Jeremy Brown <[email protected]>", | ||
"Ryan Edgell <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"sl-ember-modelize": "~1.0.0" | ||
}, | ||
"devDependencies": { | ||
"body-parser": "^1.2.0", | ||
"broccoli-asset-rev": "0.3.1", | ||
"broccoli-asset-rev": "^1.0.0", | ||
"broccoli-ember-hbs-template-compiler": "^1.6.1", | ||
"broccoli-static-compiler": "^0.2.0", | ||
"ember-cli": "0.1.2", | ||
"ember-cli": "0.1.3", | ||
"ember-cli-content-security-policy": "0.3.0", | ||
"ember-cli-dependency-checker": "0.0.6", | ||
"ember-cli-ic-ajax": "0.1.1", | ||
"ember-cli-inject-live-reload": "^1.3.0", | ||
"ember-cli-qunit": "0.1.2", | ||
"ember-cli-pretender": "^0.3.1", | ||
"ember-cli-qunit": "0.1.0", | ||
"ember-export-application-global": "^1.0.0", | ||
"express": "^4.8.5", | ||
"glob": "^4.0.5", | ||
"connect-restreamer": "~1.0.1" | ||
"glob": "^4.0.5" | ||
}, | ||
"ember-addon": { | ||
"configPath": "tests/dummy/config" | ||
}, | ||
"authors": [ | ||
"Matthew Marcum <[email protected]>", | ||
"Jeremy Brown <[email protected]>", | ||
"Ryan Edgell <[email protected]>" | ||
], | ||
"keywords": [ | ||
"ember-addon", | ||
"model", | ||
"data" | ||
], | ||
"ember-addon": { | ||
"configPath": "tests/dummy/config" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# robotstxt.org/ | ||
|
||
# http://www.robotstxt.org | ||
User-agent: * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters