UNPKG

scriptkit

Version:

Node cli to turn an es6 script with requires/imports into a standalone file for use in browser

62 lines (61 loc) 1.52 kB
{ "name": "scriptkit", "version": "3.0.0", "description": "Node cli to turn an es6 script with requires/imports into a standalone file for use in browser", "main": "index.js", "bin": { "scriptkit": "index.js" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "lint": "eslint ." }, "repository": { "type": "git", "url": "git+https://github.com/firstandthird/scriptkit.git" }, "keywords": [ "cli", "es6", "babel", "browserify", "browser", "taskkit" ], "author": "Greg Allen <code@firstandthird.com> (http://firstandthird.com/)", "license": "MIT", "bugs": { "url": "https://github.com/firstandthird/scriptkit/issues" }, "homepage": "https://github.com/firstandthird/scriptkit#readme", "dependencies": { "babel-core": "^6.26.3", "lodash.startcase": "^4.4.0", "serve": "^11.0.2", "taskkit": "^3.2.1", "taskkit-analyze": "^1.0.0", "taskkit-clean": "^1.1.0", "taskkit-eslint": "^1.2.0", "taskkit-livereload": "^0.0.6", "taskkit-rollup": "^4.0.1", "taskkit-shell": "^2.0.0", "taskkit-watcher": "^3.0.0" }, "devDependencies": { "eslint": "^6.0.1", "eslint-config-firstandthird": "^4.4.0", "eslint-loader": "^2.1.2", "eslint-plugin-import": "^2.18.0" }, "eslintConfig": { "extends": "firstandthird", "env": { "browser": true, "node": true }, "rules": { "no-underscore-dangle": 0, "import/no-unresolved": 0 } } }