UNPKG

liveview

Version:

Titanium Live Realtime App Development

111 lines (110 loc) 2.61 kB
{ "name": "liveview", "version": "1.5.6", "description": "Titanium Live Realtime App Development", "main": "index.js", "directories": { "doc": "docs", "test": "test" }, "license": "SEE LICENSE IN LICENSE.md", "scripts": { "build": "rollup lib/platform/main.js --file build/liveview.js --format iife", "prepare": "npm run build", "lint": "eslint bin/* .", "test": "npm run lint && npm run unit-test", "unit-test": "JUNIT_REPORT_PATH=junit_report.xml nyc mocha test/*.js --reporter=mocha-jenkins-reporter --exit" }, "repository": { "type": "git", "url": "git://github.com/appcelerator/liveview.git" }, "keywords": [ "titanium", "appcelerator", "liveview", "reload" ], "author": { "name": "Appcelerator, Inc.", "email": "info@appcelerator.com" }, "maintainers": [ { "name": "Christian Sullivan", "email": "csullivan@appcelerator.com" }, { "name": "Chris Barber", "email": "cbarber@appcelerator.com" } ], "bin": { "liveview": "bin/liveview", "liveview-run": "bin/liveview-run", "liveview-server": "bin/liveview-server", "liveview-install": "bin/liveview-install", "liveview-rm": "bin/liveview-rm" }, "dependencies": { "chokidar": "^3.4.2", "coloring": "~0.1.0", "commander": "~2.0.0", "debug": "~4.2.0", "fs-extra": "^8.1.0", "hypar": "~0.1.0", "node-titanium-sdk": "^3.0.1", "shelljs": "~0.2.6", "win-fork": "~1.1.1" }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "@seadub/danger-plugin-dependencies": "^1.0.0", "@seadub/danger-plugin-eslint": "^2.0.0", "@seadub/danger-plugin-junit": "^0.2.0", "danger": "^10.5.0", "eslint": "^7.11.0", "eslint-config-axway": "^5.0.0", "eslint-plugin-mocha": "^8.0.0", "husky": "^4.3.0", "lint-staged": "^10.4.2", "mocha": "^8.2.0", "mocha-jenkins-reporter": "^0.4.2", "nyc": "^15.1.0", "rollup": "^2.32.0", "should": "~13.2.3" }, "engines": { "node": ">=10.0.0" }, "mocha": { "timeout": 3500, "check-leaks": true }, "nyc": { "exclude": [ "test/**/*.js", "build/**/*.js" ], "reporter": [ "cobertura", "text" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "*.js": "eslint", "bin/*": "eslint" } }