UNPKG

@icebreakers/wxml

Version:

wxml parser and serializer. fork form wxml and improve. thanks to vivaxy and roadupcc

76 lines (75 loc) 2.05 kB
{ "name": "@icebreakers/wxml", "version": "1.0.2", "description": "wxml parser and serializer. fork form wxml and improve. thanks to vivaxy and roadupcc", "keywords": [ "wxml", "wxml-parser", "wxml-serializer", "parse-wxml", "serialize-wxml", "traverse-wxml", "stringify-wxml", "miniprogram", "parse", "traverse", "serialize", "parser", "traverser", "serializer" ], "main": "lib/index.js", "scripts": { "build": "tsc", "test": "jest", "coverage": "jest --collect-coverage", "release:beta": "npm run build && npm run coverage && standard-version --prerelease beta && npm publish --tag beta && git push --follow-tags", "release": "npm run build && npm run coverage && standard-version && npm publish && git push --follow-tags" }, "files": [ "lib" ], "repository": { "type": "git", "url": "git+https://github.com/sonofmagic/wxml.git" }, "author": "SonOfMagic <qq1324318532@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/sonofmagic/wxml/issues" }, "homepage": "https://github.com/sonofmagic/wxml#readme", "devDependencies": { "@types/fs-extra": "^9.0.13", "@types/jest": "^27.5.0", "@typescript-eslint/eslint-plugin": "^5.23.0", "@typescript-eslint/parser": "^5.23.0", "eslint": "8.15.0", "eslint-config-standard": "^17.0.0", "eslint-plugin-import": "2.26.0", "eslint-plugin-jest": "^26.1.5", "eslint-plugin-n": "^15.2.0", "eslint-plugin-promise": "6.0.0", "fs-extra": "^10.1.0", "jest": "^27.5.1", "prettier": "^2.6.2", "standard-version": "^9.3.2", "ts-jest": "^27.1.3", "typescript": "^4.6.4" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "jest": { "testEnvironment": "node", "preset": "ts-jest", "testMatch": [ "<rootDir>/src/**/__tests__/**/*.test.ts?(x)" ], "collectCoverageFrom": [ "src/**/*.ts", "!src/**/__tests__/**/*.ts" ] } }