這篇文章主要介紹了package.json檔案配置詳解,具有一定的參考價值,有興趣的小夥伴們可以參考一下。
package.json 是npm init指令初始化後,在專案的根目錄下自動產生的設定檔,它定義了這個專案的設定資訊以及所需的各種模組, npm install根據這個指令,自動下載所需的模組。 package.json就是一個json文件,json本身只是一種資料格式,它本身不支援註解,此處的註解只是為了更方便的理解package.json的各個欄位
{ //项目名称 “name”: “demo”, //version是版本(遵守“大版本.次要版本.小版本”的格式) “version”: “1.0.0”, //description描述你的模块,或者搜索 “description”: “vue.js js iview “, //main字段指定了加载的入口文件 “main”: “app.js”, // scripts指定了运行脚本命令的npm命令行缩写,比比如start指定了运行npm run start时,所要执行的命令。 “scripts”: { “start”: “node index.js” }, //repository(仓库)指定一个代码存放地址 “repository”: { “type”: “git”, “url”: “git+https://github.com/XXXX” }, “author”: “mayuan”, “license”: “ISC”, “bugs”: { “url”: “https://github.com/XXXX” }, // 一个字符串数组,方便别人搜索到本模块 “keywords”: [ “vue”,”iview” ], “entry”:{ “main”: “./web/index.js” }, //项目主页url “homepage”: “https://github.com/XXXX“, //devDependencies指定项目开发所需要的模块 “devDependencies”: { “babel-core”: “^6.23.1”, “babel-loader”: “^6.3.2”, “babel-preset-es2015”: “^6.22.0”, “vue-html-loader”: “^1.0.0”, “vue-loader”: “^8.5.2”, “vue-style-loader”: “^1.0.0”, “webpack”: “^1.13.2” }, //dependencies字段指定了项目运行所依赖的模块 “dependencies”: { “underscore”: “^1.8.3”, “vue”: “^2.1.4” }, }
以上是詳細介紹package.json檔案配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!