61 lines
2.4 KiB
JSON
61 lines
2.4 KiB
JSON
{
|
|
"name": "@cerxes/host",
|
|
"version": "0.0.1",
|
|
"author": "Miel Truyen <miel.truyen@cerxes.net>",
|
|
"description": "A JS-interface to the host-machine. Provides functions for common file-system tasks during build, watch or deployment such as cleaning a dist dir, copying assets etc.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.cerxes.net/cerxes/host.git"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/types": "latest",
|
|
"@babel/register": "latest",
|
|
"@babel/cli": "latest",
|
|
"@babel/core": "latest",
|
|
"@babel/plugin-proposal-class-properties": "latest",
|
|
"@babel/plugin-proposal-decorators": "latest",
|
|
"@babel/plugin-proposal-export-default-from": "latest",
|
|
"@babel/plugin-proposal-export-namespace-from": "latest",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "latest",
|
|
"@babel/plugin-proposal-optional-chaining": "latest",
|
|
"@babel/plugin-proposal-private-methods": "latest",
|
|
"@babel/preset-env": "latest",
|
|
"rollup": "latest",
|
|
"rollup-plugin-babel": "latest",
|
|
"rollup-plugin-sourcemaps": "latest",
|
|
"rollup-plugin-node-resolve": "latest",
|
|
"rollup-plugin-commonjs": "latest",
|
|
"rollup-plugin-string": "latest",
|
|
"rollup-plugin-terser": "latest",
|
|
"rollup-plugin-json": "latest",
|
|
"builtin-modules": "latest",
|
|
"jsdoc": "latest",
|
|
"jest": "latest",
|
|
"npm-run-all": "latest",
|
|
"@types/node": "^12.12.12",
|
|
"@types/zen-observable": "^0.8.0"
|
|
},
|
|
"dependencies": {
|
|
"ansi-up": "^1.0.0",
|
|
"json5": "^2.1.1",
|
|
"minimatch": "^3.0.4",
|
|
"zen-observable": "latest"
|
|
},
|
|
"scripts": {
|
|
"build": "npm-run-all -p build-cjs build-es6",
|
|
"watch": "npm-run-all -p watch-cjs watch-es6",
|
|
"build-cjs": "rollup -c",
|
|
"watch-cjs": "rollup -c -w",
|
|
"build-es6": "npx babel ./src --out-dir=lib",
|
|
"watch-es6": "npx babel ./src --out-dir=lib -w",
|
|
"npm-publish": "npm run build && npm publish --registry https://npm.cerxes.net --tag latest",
|
|
"test": "jest --detectOpenHandles",
|
|
"test-manual-watch": "cd tests/manual && node -r @babel/register watch.dev.js",
|
|
"test-manual-pattern": "cd tests/manual && node -r @babel/register watch-glob.dev.js",
|
|
"test-manual-sync": "cd tests/manual && node -r @babel/register watch-sync.dev.js",
|
|
"test-manual-processArgs": "cd tests/manual && node -r @babel/register process-args.js"
|
|
},
|
|
"module": "./lib/index.js",
|
|
"main": "./dist/index.js"
|
|
}
|