UNPKG

art-config

Version:

A powerful yet simple tool for configuring all your libraries consistently.

59 lines (58 loc) 2.24 kB
{ "author": "Shane Brinkman-Davis Delamore", "bugs": "https://github.com/art-suite/art-suite-foundations/issues", "dependencies": { "art-class-system": "^1.11.20", "art-events": "^2.0.1", "art-standard-lib": "^1.74.4" }, "description": "A powerful yet simple tool for configuring all your libraries consistently.", "devDependencies": { "art-testbench": "^3.2.18" }, "homepage": "https://github.com/art-suite/art-suite-foundations", "jest": { "collectCoverageFrom": [ "build/**/*.js", "!build/test/**/*.js" ], "coveragePathIgnorePatterns": [ "/index.js$", "/namespace.js$" ], "testEnvironment": "node", "testPathIgnorePatterns": [ "/node_modules/", "<rootDir>/test" ], "verbose": true }, "license": "ISC", "name": "art-config", "repository": { "type": "git", "url": "https://github.com/art-suite/art-suite-foundations.git" }, "scripts": { "build": "rsync -av --include='*.js' --include='*.css' --exclude='*' ./source/ ./build/\ncoffee -m --output build --compile source &\nCOFFEE_PID=$!\ncaf -m -c source -o build --require coffee-script/register&\nCAF_PID=$!\nwait $COFFEE_PID || exit 1\nwait $CAF_PID || exit 1\nnpm run nn", "build-clean": "# BUILD CLEAN START\n# - building into: build-temp\n#\nrm -rf ./__build-old__\nrsync -av --include='*.js' --include='*.css' --exclude='*' ./source/ ./build/\ncoffee -m --output build-temp --compile source &\nCOFFEE_PID=$!\ncaf -m -c source -o build-temp --require coffee-script/register&\nCAF_PID=$!\nwait $COFFEE_PID || exit 1\nwait $CAF_PID || exit 1\nnpm run nn\n\nnn build-temp/*\n\n# BUILD CLEAN FINIALIZING\n# - replace old build in: build\n# - with new build from: build-temp\n#\nmv build __build-old__\nmv build-temp build\nrm -rf ./__build-old__", "build-watch": "nodemon -e js,ts,jsx,tsx,caf,coffee,json -x npm run build", "clean": "rm -rf build/*", "nn": "nn build/* ", "test": "npm run build\njest", "test-watch": "jest --watch" }, "version": "2.0.6", "watch": { "build": { "extensions": [ "caf", "coffee" ], "patterns": [ "source" ], "quiet": false } } }