1. npm init
    2. npm init -y
    1. {
    2. // 项目名称
    3. "name": "yingximu",
    4. // 版本(格式:大版本.次要版本.小版本)
    5. "version": "1.0.0",
    6. // 项目描述
    7. "description": "",
    8. // 入口文件
    9. "main": "index.js",
    10. // 脚本命令
    11. "scripts": {
    12. "test": "echo \"Error: no test specified\" && exit 1"
    13. },
    14. // --save-dev:开发依赖
    15. "devDependencies": {},
    16. // 关键词
    17. "keywords": [],
    18. // 默认 commonjs
    19. "type": "commonjs", // ES6模块:"module"
    20. // 作者
    21. "author": "沐颖汐",
    22. // 许可证
    23. "license": "ISC"
    24. }