-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup jsonlint tests and configuration for TravisCI
- Loading branch information
1 parent
3401597
commit 1ba0346
Showing
4 changed files
with
46 additions
and
3 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 |
---|---|---|
@@ -1 +1,19 @@ | ||
# dependencies | ||
node_modules | ||
|
||
# Only apps should have lockfiles | ||
yarn.lock | ||
package-lock.json | ||
|
||
# misc | ||
npm-debug.log* | ||
yarn-error.log | ||
|
||
# OS generated files | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db |
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,16 @@ | ||
--- | ||
language: node_js | ||
node_js: | ||
# we recommend testing addons with the same minimum supported node version as Ember CLI | ||
# so that your addon works for all apps | ||
- "4" | ||
|
||
sudo: false | ||
dist: trusty | ||
|
||
cache: | ||
directories: | ||
- $HOME/.npm | ||
|
||
before_install: | ||
- npm config set spin false |
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,7 +1,9 @@ | ||
{ | ||
"name": "language-subtag-registry", | ||
"version": "0.3.18", | ||
"implements": ["CommonJS/Modules/1.0"], | ||
"implements": [ | ||
"CommonJS/Modules/1.0" | ||
], | ||
"description": "Full BCP 47 language subtag data from the official IANA repository, in JSON format with multiple indices.", | ||
"homepage": "https://github.com/mattcg/language-subtag-registry", | ||
"repository": { | ||
|
@@ -12,6 +14,10 @@ | |
{ | ||
"name": "Matthew Caruana Galizia", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Guillaume Gérard", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"licenses": [ | ||
|
@@ -29,5 +35,8 @@ | |
"subtags", | ||
"rfc5646", | ||
"language" | ||
] | ||
], | ||
"devDependencies": { | ||
"jsonlint": "1.x.x" | ||
} | ||
} |