mirror of
https://github.com/Shopify/draggable.git
synced 2025-12-08 20:15:56 +00:00
update to node 10 + deps
This commit is contained in:
parent
c2f41e8dbf
commit
cd8de0b443
@ -1 +1 @@
|
|||||||
v8.11.1
|
v10.4.0
|
||||||
|
|||||||
@ -10,7 +10,10 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Shopify/draggable.git"
|
"url": "https://github.com/Shopify/draggable.git"
|
||||||
},
|
},
|
||||||
"keywords": ["draggable", "javascript"],
|
"keywords": [
|
||||||
|
"draggable",
|
||||||
|
"javascript"
|
||||||
|
],
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/Shopify/draggable/issues"
|
"url": "https://github.com/Shopify/draggable/issues"
|
||||||
},
|
},
|
||||||
@ -18,7 +21,7 @@
|
|||||||
"tools": "--require babel-register --gulpfile tools"
|
"tools": "--require babel-register --gulpfile tools"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rm -rf dist bundle-report.html",
|
"clean": "rimraf dist bundle-report.html",
|
||||||
"views": "gulp views $npm_package_config_tools",
|
"views": "gulp views $npm_package_config_tools",
|
||||||
"scripts": "gulp scripts $npm_package_config_tools",
|
"scripts": "gulp scripts $npm_package_config_tools",
|
||||||
"styles": "gulp styles $npm_package_config_tools",
|
"styles": "gulp styles $npm_package_config_tools",
|
||||||
@ -32,35 +35,36 @@
|
|||||||
"prepublish": "yarn run build"
|
"prepublish": "yarn run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^2.5.5",
|
"core-js": "^2.5.7",
|
||||||
"threads": "git+ssh://git@github.com/beefchimi/threads.git#v1.0.0-beta8"
|
"threads": "git+ssh://git@github.com/beefchimi/threads.git#v1.0.0-beta8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"autoprefixer": "^8.3.0",
|
"autoprefixer": "^8.6.2",
|
||||||
"babel-core": "^6.26.0",
|
"babel-core": "^6.26.3",
|
||||||
"babel-loader": "^7.1.4",
|
"babel-loader": "^7.1.4",
|
||||||
"babel-preset-shopify": "^16.3.0",
|
"babel-preset-shopify": "^16.5.0",
|
||||||
"browser-sync": "^2.23.7",
|
"browser-sync": "^2.24.4",
|
||||||
"cssnano": "^3.10.0",
|
"cssnano": "^3.10.0",
|
||||||
"cssnano-preset-advanced": "^4.0.0-rc.2",
|
"cssnano-preset-advanced": "^4.0.0-rc.2",
|
||||||
"eslint": "^4.19.1",
|
"eslint": "^4.19.1",
|
||||||
"eslint-plugin-prettier": "^2.6.0",
|
"eslint-plugin-prettier": "^2.6.0",
|
||||||
"eslint-plugin-shopify": "^21.0.1",
|
"eslint-plugin-shopify": "^22.1.0",
|
||||||
"gulp": "gulpjs/gulp#v4.0.0-alpha.3",
|
"gulp": "gulpjs/gulp#v4.0.0-alpha.3",
|
||||||
"gulp-cli": "^2.0.1",
|
"gulp-cli": "^2.0.1",
|
||||||
"gulp-data": "^1.3.1",
|
"gulp-data": "^1.3.1",
|
||||||
"gulp-htmlmin": "^4.0.0",
|
"gulp-htmlmin": "^4.0.0",
|
||||||
"gulp-nunjucks": "^3.1.1",
|
"gulp-nunjucks": "^4.0.0",
|
||||||
"gulp-postcss": "^7.0.1",
|
"gulp-postcss": "^7.0.1",
|
||||||
"gulp-sass": "^4.0.1",
|
"gulp-sass": "^4.0.1",
|
||||||
"gulp-sourcemaps": "^2.6.4",
|
"gulp-sourcemaps": "^2.6.4",
|
||||||
"install": "^0.11.0",
|
"install": "^0.11.0",
|
||||||
"nunjucks": "^3.1.2",
|
"nunjucks": "^3.1.3",
|
||||||
"prettier": "^1.12.1",
|
"prettier": "^1.13.5",
|
||||||
"prettier-stylelint": "^0.4.2",
|
"prettier-stylelint": "^0.4.2",
|
||||||
"stylelint": "^9.2.0",
|
"rimraf": "^2.6.2",
|
||||||
|
"stylelint": "^9.2.1",
|
||||||
"stylelint-config-shopify": "^5.0.1",
|
"stylelint-config-shopify": "^5.0.1",
|
||||||
"webpack": "^4.6.0",
|
"webpack": "^4.12.0",
|
||||||
"webpack-bundle-analyzer": "^2.11.1"
|
"webpack-bundle-analyzer": "^2.13.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1335
examples/yarn.lock
1335
examples/yarn.lock
File diff suppressed because it is too large
Load Diff
27
package.json
27
package.json
@ -7,8 +7,7 @@
|
|||||||
"author": "Shopify <dev@shopify.com>",
|
"author": "Shopify <dev@shopify.com>",
|
||||||
"homepage": "https://github.com/Shopify/draggable#readme",
|
"homepage": "https://github.com/Shopify/draggable#readme",
|
||||||
"repository": "https://github.com/Shopify/draggable",
|
"repository": "https://github.com/Shopify/draggable",
|
||||||
"contributors": [
|
"contributors": [{
|
||||||
{
|
|
||||||
"name": "Max Hoffmann",
|
"name": "Max Hoffmann",
|
||||||
"email": "max.hoffmann@shopify.com"
|
"email": "max.hoffmann@shopify.com"
|
||||||
},
|
},
|
||||||
@ -37,27 +36,27 @@
|
|||||||
},
|
},
|
||||||
"files": ["lib/**/*.js"],
|
"files": ["lib/**/*.js"],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"babel-core": "^6.26.0",
|
"babel-core": "^6.26.3",
|
||||||
"babel-jest": "^22.4.3",
|
"babel-jest": "^23.0.1",
|
||||||
"babel-loader": "^7.1.4",
|
"babel-loader": "^7.1.4",
|
||||||
"babel-plugin-transform-class-properties": "^6.24.1",
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
||||||
"babel-plugin-transform-es2015-classes": "^6.24.1",
|
"babel-plugin-transform-es2015-classes": "^6.24.1",
|
||||||
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
|
||||||
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
||||||
"babel-preset-shopify": "^16.3.0",
|
"babel-preset-shopify": "^16.5.0",
|
||||||
"codecov": "^3.0.0",
|
"codecov": "^3.0.2",
|
||||||
"concurrently": "^3.5.1",
|
"concurrently": "^3.5.1",
|
||||||
"core-js": "^2.5.5",
|
"core-js": "^2.5.7",
|
||||||
"esdoc": "^1.0.4",
|
"esdoc": "^1.1.0",
|
||||||
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
|
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
|
||||||
"esdoc-standard-plugin": "^1.0.0",
|
"esdoc-standard-plugin": "^1.0.0",
|
||||||
"eslint": "^4.19.1",
|
"eslint": "^4.19.1",
|
||||||
"eslint-loader": "^2.0.0",
|
"eslint-loader": "^2.0.0",
|
||||||
"eslint-plugin-shopify": "^21.0.1",
|
"eslint-plugin-shopify": "^22.1.0",
|
||||||
"jest": "^22.4.3",
|
"jest": "^23.1.0",
|
||||||
"webpack": "^4.6.0",
|
"webpack": "^4.12.0",
|
||||||
"webpack-bundle-analyzer": "^2.11.1",
|
"webpack-bundle-analyzer": "^2.13.1",
|
||||||
"webpack-cli": "^2.0.15"
|
"webpack-cli": "^3.0.3"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": "plugin:shopify/esnext",
|
"extends": "plugin:shopify/esnext",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user