Skip to content

Commit

Permalink
update to latest version of standard
Browse files Browse the repository at this point in the history
  • Loading branch information
Flet committed Mar 24, 2016
1 parent 323fd9d commit 4b10001
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
node_modules/
tmp/
.history
2 changes: 1 addition & 1 deletion eslintrc.json
@@ -1,3 +1,3 @@
{
"extends": ["semistandard", "standard-react"]
"extends": ["semistandard", "standard-jsx"]
}
1 change: 1 addition & 0 deletions options.js
Expand Up @@ -8,6 +8,7 @@ module.exports = {
homepage: pkg.homepage,
bugs: pkg.bugs.url,
tagline: 'Semicolons For All!',
eslint: require('eslint'),
eslintConfig: {
configFile: path.join(__dirname, 'eslintrc.json')
},
Expand Down
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -14,25 +14,25 @@
"url": "https://github.com/Flet/semistandard/issues"
},
"dependencies": {
"defaults": "^1.0.2",
"eslint": "^1.0.0",
"eslint-config-semistandard": "^5.0.0",
"eslint-config-standard": "^4.0.0",
"eslint-config-standard-react": "^1.0.0",
"eslint-plugin-react": "^3.9.0",
"eslint": "^2.4.0",
"eslint-config-semistandard": "^6.0.1",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-jsx": "^1.1.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^4.2.3",
"eslint-plugin-standard": "^1.1.0",
"get-stdin": "^5.0.1",
"minimist": "^1.1.1",
"semistandard-format": "^2.1.0",
"standard-engine": "^2.0.4"
"standard-engine": "^3.3.1"
},
"devDependencies": {
"fixpack": "^2.2.0",
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.3.4",
"run-series": "^1.1.1",
"standard": "*",
"standard": "^6.0.8",
"tape": "^4.0.0",
"xtend": "^4.0.0"
},
Expand Down
9 changes: 5 additions & 4 deletions test/clone.js
Expand Up @@ -42,7 +42,7 @@ var URLS = [
'https://github.com/JGAntunes/ampersand-infinite-scroll',
'https://github.com/JGAntunes/ampersand-pagination-mixin',
'https://github.com/jokeyrhyme/appcache-fetcher.js',
'https://github.com/larsthorup/amaze',
// 'https://github.com/larsthorup/amaze',
'https://github.com/larsthorup/neo4j-sandbox',
// 'https://github.com/muzzley/good-bunyan',
// 'https://github.com/openimagerynetwork/oin-meta-generator',
Expand All @@ -51,9 +51,9 @@ var URLS = [
'https://github.com/scenevr/summary',
'https://github.com/shama/webpack-stream',
'https://github.com/spudly/error-subclass',
'https://github.com/spudly/error-wrapper',
'https://github.com/spudly/error-wrapper'
// 'https://github.com/tomusdrw/grunt-sync',
'https://github.com/wercker/docs'
// 'https://github.com/wercker/docs'
// 'https://github.com/alexjesp/global-replacer',
// 'https://github.com/alexjesp/global-replacer',
// 'https://github.com/blinkmobile/geolocation',
Expand Down Expand Up @@ -84,7 +84,8 @@ var URLS = [

var MODULES = {}
URLS.forEach(function (url) {
var name = url
var spliturl = url.split('/')
var name = spliturl[spliturl.length - 1]
MODULES[name] = url + '.git'
})

Expand Down

0 comments on commit 4b10001

Please sign in to comment.