Browse Source

Switch to XO

master
Leo Lamprecht 8 years ago
parent
commit
561dabf837
No known key found for this signature in database GPG Key ID: EF804E3FF4BBA8AB
  1. 46
      package.json

46
package.json

@ -23,32 +23,15 @@
"transform-async-to-generator" "transform-async-to-generator"
] ]
}, },
"eslintConfig": { "xo": {
"extends": "standard", "esnext": true,
"parser": "babel-eslint", "space": true,
"rules": { "semicolon": false,
"yoda": 0, "ignores": [
"arrow-parens": 0, "build/**",
"semi": [ "out/**",
2, "test/_fixtures/**"
"always" ]
],
"no-extra-semi": 2,
"semi-spacing": [
2,
{
"before": false,
"after": true
}
],
"no-shadow": [
2,
{
"builtinGlobals": true,
"hoist": "functions"
}
]
}
}, },
"bin": { "bin": {
"now": "./build/bin/now" "now": "./build/bin/now"
@ -89,26 +72,21 @@
"devDependencies": { "devDependencies": {
"alpha-sort": "1.0.2", "alpha-sort": "1.0.2",
"ava": "0.16.0", "ava": "0.16.0",
"babel-eslint": "7.0.0",
"babel-plugin-transform-async-to-generator": "6.16.0", "babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-runtime": "6.15.0", "babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.16.0", "babel-preset-es2015": "6.16.0",
"babel-register": "6.16.3", "babel-register": "6.16.3",
"del": "2.2.2", "del": "2.2.2",
"eslint": "3.8.0",
"eslint-config-standard": "6.2.0",
"eslint-plugin-promise": "3.2.1",
"eslint-plugin-standard": "2.0.1",
"estraverse-fb": "1.3.1", "estraverse-fb": "1.3.1",
"gulp": "3.9.1", "gulp": "3.9.1",
"gulp-babel": "6.1.2", "gulp-babel": "6.1.2",
"gulp-eslint": "3.0.1",
"gulp-task-listing": "1.0.1", "gulp-task-listing": "1.0.1",
"pkg": "3.0.0-beta.14" "pkg": "3.0.0-beta.14",
"xo": "0.17.0"
}, },
"scripts": { "scripts": {
"start": "gulp", "start": "gulp",
"test": "ava", "test": "xo && ava",
"prepublish": "gulp compile", "prepublish": "gulp compile",
"pkg": "pkg . --out-dir out" "pkg": "pkg . --out-dir out"
}, },

Loading…
Cancel
Save