diff --git a/package.json b/package.json index 52e537a1..d4a4f8fe 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "box-cli", + "name": "@box/cli", "description": "Official command line interface for the Box API", "keywords": [ "box", diff --git a/test/box-command.test.js b/test/box-command.test.js index 81b44c0f..83f313f4 100644 --- a/test/box-command.test.js +++ b/test/box-command.test.js @@ -32,7 +32,7 @@ describe('BoxCommand', () => { .it('should enable framework debugging when verbose flag is passed', ctx => { debug.disable(); let debugLines = ctx.stderr.split(os.EOL); - assert.include(debugLines[0], 'box:box-cli:hooks:init'); + assert.include(debugLines[0], 'box:@box/cli:hooks:init'); assert.include(debugLines[1], 'box:help'); });