mirror of
https://github.com/Mibew/simple-icons.git
synced 2025-01-17 23:51:08 +03:00
Merge pull request #527 from ericcornelissen/json-validator
Add Json validator
This commit is contained in:
commit
6e5f68d3b7
4
.gitignore
vendored
4
.gitignore
vendored
@ -37,3 +37,7 @@ Temporary Items
|
||||
*.css.map
|
||||
|
||||
# End of https://www.gitignore.io/api/sass,macos,jekyll
|
||||
|
||||
|
||||
# NPM dependencies
|
||||
node_modules/
|
||||
|
11
.travis.yml
Normal file
11
.travis.yml
Normal file
@ -0,0 +1,11 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- "6"
|
||||
|
||||
script:
|
||||
- npm run jsonlint
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: never
|
||||
on_failure: change
|
@ -10,5 +10,11 @@
|
||||
"main": "_data/simple-icons.json",
|
||||
"repository": "git@github.com:danleech/simple-icons.git",
|
||||
"author": "Dan Leech",
|
||||
"license": "CCO"
|
||||
"license": "CCO",
|
||||
"devDependencies": {
|
||||
"jsonlint": "^1.6.2"
|
||||
},
|
||||
"scripts": {
|
||||
"jsonlint": "jsonlint _data/simple-icons.json -q"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user