extendscript-bundlr
Version:
a tool for bundling Adobe ExtendScripts that use the `#include 'path/to/file'` statement
58 lines (57 loc) • 1.61 kB
JSON
{
"name": "extendscript-bundlr",
"version": "0.4.0",
"description": "a tool for bundling Adobe ExtendScripts that use the `#include 'path/to/file'` statement",
"main": "dist/index.js",
"scripts": {
"prewatch": "rm -rf ./dist && mkdir ./dist",
"dev": "./node_modules/.bin/babel src -w -d dist/",
"build": "npm run prewatch && babel src -d dist/",
"test": "./dist/index.js -i ./test/src.jsx -o ./test/out.jsx",
"test:report": "./dist/index.js -i ./test/src.jsx -o ./test/out.jsx -r",
"test:missing": "./dist/index.js -i ./test/src.jsx -o ./test/out.jsx -m"
},
"keywords": [
"Adobe",
"ExtendScript",
"automation"
],
"contributors": [
{
"name": "Fabian 'fabiantheblind' Morón Zirfas",
"email": "fabian.moron.zirfas@gmail.com",
"url": "http://fabianmoronzirfas.me"
}
],
"license": "ISC",
"bin": {
"exsbundlr": "./dist/index.js"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^8.2.6",
"babel-preset-es2015": "^6.6.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.2.0",
"eslint-config-unobtrusive": "^1.2.2"
},
"dependencies": {
"abs": "^1.3.4",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"file-exists": "^1.0.0",
"line-reader": "^0.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiantheblind/extendscript-bundlr.git"
},
"bugs": {
"url": "https://github.com/fabiantheblind/extendscript-bundlr/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}