UNPKG

donejs-cli

Version:

The command line interface to your DoneJS application.

83 lines (82 loc) 2.43 kB
{ "name": "donejs-cli", "version": "3.2.2", "description": "The command line interface to your DoneJS application.", "main": "lib/utils", "bin": { "donejs": "./bin/donejs" }, "scripts": { "test": "npm run jshint && npm run mocha", "jshint": "jshint lib/. bin/donejs test/. --config", "mocha": "mocha test/ --timeout 120000", "verify": "echo \"Script ran $1 $2\"", "publish": "git push origin && git push origin --tags", "release:prerelease": "npm version prerelease && npm publish --tag=pre", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish", "coverage": "istanbul cover _mocha -- test/ --timeout 600000", "coverage:upload": "istanbul cover _mocha --report lcovonly -- test/ --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls-send/bin/coveralls.js" }, "repository": { "type": "git", "url": "git+https://github.com/donejs/cli.git" }, "keywords": [ "CanJS", "StealJS", "DoneJS" ], "author": "Bitovi", "license": "MIT", "bugs": { "url": "https://github.com/donejs/cli/issues" }, "homepage": "https://github.com/donejs/cli", "devDependencies": { "concat-stream": "^1.5.1", "coveralls-send": "0.0.2", "cross-spawn-async": "^2.1.9", "is-ci": "^1.0.7", "istanbul": "^0.4.2", "jshint": "^2.8.0", "mocha": "^5.0.2", "mocha-lcov-reporter": "^1.2.0", "mockery": "^2.0.0", "rimraf": "^2.5.2" }, "dependencies": { "commander": "^2.9.0", "cross-spawn": "^6.0.5", "debug": "^4.1.1", "mkdirp": "^0.5.1", "q": "^1.5.1", "yeoman-environment": "^2.3.4" }, "donejs": { "dependencies": { "can": "^5.20.1", "can-route-pushstate": "^5.0.7", "can-stache-route-helpers": "^1.1.1", "can-zone": "^1.0.0", "done-autorender": "^2.4.3", "done-component": "^2.2.0", "done-css": "^3.0.2", "done-serve": "^3.0.0", "generator-donejs": "^3.0.0", "steal": "^2.1.6", "steal-less": "^1.2.2" }, "devDependencies": { "can-debug": "^2.0.1", "can-route-hash": "^1.0.1", "donejs-cli": "^3.0.0-pre.5", "funcunit": "^3.6.1", "steal-conditional": "^1.0.0", "steal-qunit": "^1.0.1", "steal-tools": "^2.0.9", "testee": "^0.8.1" } } }