diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-05 19:02:35 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-05 19:02:35 +0100 |
commit | 2f8d32a1f4fbe51c4e6ac381d5d663d8f11fc1f9 (patch) | |
tree | 4abb508477aa4b6b811f89731011661783a2225c /package.json | |
parent | 4049e2e6361d5ed9120f1edd02ef96ecc138fa6d (diff) | |
download | svg.js-2f8d32a1f4fbe51c4e6ac381d5d663d8f11fc1f9.tar.gz svg.js-2f8d32a1f4fbe51c4e6ac381d5d663d8f11fc1f9.zip |
Linted all files, upgraded all dependencies
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 68 |
1 files changed, 24 insertions, 44 deletions
diff --git a/package.json b/package.json index d26147f..0a5de2c 100644 --- a/package.json +++ b/package.json @@ -54,59 +54,39 @@ "license": "MIT", "typings": "./svg.js.d.ts", "scripts": { - "build": "gulp", - "lint": "gulp lint", - "build:test": "gulp unify", - "build:dev": "gulp --dont-break", - "test": "karma start .config/karma.conf.js --single-run", - "test:dots": "karma start .config/karma.conf.js --single-run --reporters dots", - "test:quick": "karma start .config/karma.quick.js", - "server": "http-server ./ -d", - "rollup": "rollup -c" + "build": "npx rollup -c", + "lint": "npx eslint ./src", + "fix": "npx eslint ./src --fix", + "test": "npx karma start .config/karma.conf.js --single-run", + "test:dots": "npx karma start .config/karma.conf.js --single-run --reporters dots", + "test:quick": "npx karma start .config/karma.quick.js", + "server": "npx http-server ./ -d" }, "devDependencies": { "@babel/core": "^7.1.2", "@babel/plugin-external-helpers": "^7.0.0", "@babel/preset-env": "^7.1.0", - "coveralls": "^2.11.15", - "del": "^2.2.0", - "gulp": "^3.8.6", - "gulp-babel": "^8.0.0", - "gulp-chmod": "^2.0.0", - "gulp-cli": "^1.2.2", - "gulp-concat": "^2.3.3", - "gulp-header": "^1.0.5", - "gulp-rename": "^1.4.0", - "gulp-size": "^2.1.0", - "gulp-sourcemaps": "^2.6.4", - "gulp-standard": "^10.1.2", - "gulp-trimlines": "^1.0.0", - "gulp-uglify": "^2.0.0", - "gulp-wrap": "^0.13.0", + "babel-eslint": "^10.0.1", + "coveralls": "^3.0.2", + "eslint": "^5.8.0", + "eslint-config-standard": "^12.0.0", + "eslint-plugin-import": "^2.14.0", + "eslint-plugin-node": "^8.0.0", + "eslint-plugin-promise": "^4.0.1", + "eslint-plugin-standard": "^4.0.0", "http-server": "^0.11.1", - "jasmine-core": "^2.5.2", - "karma": "^1.3.0", - "karma-coverage": "^1.1.1", - "karma-firefox-launcher": "^1.0.0", - "karma-jasmine": "^1.0.2", - "karma-phantomjs-launcher": "^1.0.2", - "request": "^2.88.0", - "rollup": "^0.66.6", + "jasmine-core": "^3.3.0", + "karma": "^3.1.1", + "karma-chrome-launcher": "^2.2.0", + "karma-coverage": "^1.1.2", + "karma-firefox-launcher": "^1.1.0", + "karma-jasmine": "^1.1.2", + "rollup": "^0.67.0", "rollup-plugin-babel": "^4.0.3", "rollup-plugin-filesize": "^5.0.1", + "rollup-plugin-progress": "^0.4.0", "rollup-plugin-uglify": "^6.0.0", - "snazzy": "^6.0.0", - "standard": "^9.0.1", "svgdom": "latest" }, - "standard": { - "ignore": [ - "/dist", - "/spec", - "/src/umd.js" - ], - "globals": [ - "SVG" - ] - } + "dependencies": {} } |