12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {
- "name": "miniprogram-computed",
- "version": "4.3.8",
- "description": "Computed & watch - wechat miniprogram custom component extend behavior",
- "main": "dist/index.js",
- "types": "types/index.d.ts",
- "scripts": {
- "dev": "gulp dev",
- "watch": "gulp dev-watch",
- "build": "gulp",
- "gen_dts": "gulp dts",
- "test": "jest ./test/* --bail",
- "coverage": "jest ./test/* --coverage --bail",
- "lint": "eslint . --fix"
- },
- "miniprogram": "dist",
- "repository": {
- "type": "git",
- "url": "https://github.com/wechat-miniprogram/computed.git"
- },
- "files": [
- "src",
- "dist",
- "types",
- "LICENSE",
- "package.json",
- "README.md",
- "UPDATE.md"
- ],
- "author": "wechat-miniprogram",
- "license": "MIT",
- "devDependencies": {
- "@swc/cli": "^0.1.49",
- "@swc/core": "^1.2.80",
- "@types/jest": "^27.0.1",
- "@types/rfdc": "^1.1.0",
- "@types/wechat-miniprogram": "^3.0.0",
- "@typescript-eslint/eslint-plugin": "^2.23.0",
- "@typescript-eslint/parser": "^2.23.0",
- "codecov": "^3.7.0",
- "colors": "^1.4.0",
- "eslint": "^5.14.1",
- "eslint-config-airbnb-base": "13.1.0",
- "eslint-config-prettier": "^6.10.1",
- "eslint-loader": "^2.1.2",
- "eslint-plugin-import": "^2.16.0",
- "eslint-plugin-node": "^7.0.1",
- "eslint-plugin-prettier": "^3.1.2",
- "eslint-plugin-promise": "^3.8.0",
- "gulp": "^4.0.0",
- "gulp-clean": "^0.4.0",
- "gulp-esbuild": "^0.8.6",
- "gulp-swc": "^1.1.1",
- "gulp-typescript": "^6.0.0-alpha.1",
- "gulp-watch": "^5.0.1",
- "husky": "^7.0.2",
- "jest": "^27.0.6",
- "miniprogram-exparser": "^2.11.2",
- "miniprogram-simulate": "^1.2.9",
- "prettier": "^2.0.1",
- "proxy-polyfill": "^0.3.2",
- "ts-jest": "^27.0.5",
- "ts-node": "^10.2.1",
- "typescript": "^4.5.4"
- },
- "dependencies": {
- "fast-deep-equal": "^2.0.1",
- "rfdc": "^1.1.4"
- },
- "husky": {
- "hooks": {
- "pre-commit": "npm run lint"
- }
- },
- "pnpm": {
- "overrides": {
- "ansi-regex@>2.1.1 <5.0.1": ">=5.0.1",
- "braces@<2.3.1": ">=2.3.1",
- "glob-parent@<5.1.2": ">=5.1.2"
- }
- }
- }
|