Files
miniprogram-picker/package.json
qimengjie 1b9e01164e Update
2018-12-14 15:15:41 +08:00

63 lines
1.9 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "miniprogram-picker",
"version": "1.0.0",
"description": "微信小程序自定义组件Picker。本组件对微信小程序原生Picker组件进行了二次封装开发者只需要提供固定数据结构的sourceData再进行一些必要配置本组件就可以自动帮助开发者处理联动逻辑。",
"main": "miniprogram_dist/index.js",
"scripts": {
"dev": "gulp dev --develop",
"watch": "gulp watch --develop --watch",
"build": "gulp",
"dist": "npm run build",
"clean-dev": "gulp clean --develop",
"clean": "gulp clean",
"test": "jest ./test/* --silent --bail",
"coverage": "jest ./test/* --coverage --bail",
"lint": "eslint \"src/**/*.js\"",
"lint-tools": "eslint \"tools/**/*.js\" --rule \"import/no-extraneous-dependencies: false\""
},
"miniprogram": "miniprogram_dist",
"jest": {
"testEnvironment": "jsdom",
"testURL": "https://jest.test",
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"repository": {
"type": "git",
"url": "https://github.com/IceApriler/miniprogram-picker.git"
},
"author": "IceApriler",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"colors": "^1.3.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-if": "^2.0.2",
"gulp-install": "^1.1.0",
"gulp-less": "^3.5.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"jest": "^23.5.0",
"miniprogram-simulate": "^0.1.3",
"through2": "^2.0.3",
"webpack": "^4.16.5",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {}
}