single quotes not working in package.json
问题 I'd like to get my package.json to be able to run using the command npm run test-watch on Windows 10 with npm 5.5.1. In my package.json: "scripts": { "test": "mocha server/**/*.test.js", "test-watch": "nodemon --exec 'npm test'" } However, I this interpretes the code strangely to have a single quote in there. I'm actually following a Udemy course so it appears to work for the instructor. However, here is the output I get: PS D:\courses\node-course\node-todo-api> npm run test-watch > todo-api