Comparing version 2.1.0 to 2.1.1-0
139
package.json
{ | ||
"name": "xhtml2pug", | ||
"version": "2.1.0", | ||
"version": "2.1.1-0", | ||
"description": "library for convert html2pug", | ||
"main": "build/main/index.js", | ||
"typings": "build/main/index.d.ts", | ||
"module": "build/module/index.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"main": "./dist/main.cjs.js", | ||
"module": "./dist/main.es.js", | ||
"types": "./dist/main.d.ts", | ||
"exports": { | ||
".": { | ||
"import": "./dist/main.es.js", | ||
"require": "./dist/main.cjs.js" | ||
} | ||
}, | ||
"repository": "https://github.com/dimensi/xhtml2pug", | ||
@@ -20,104 +29,30 @@ "author": { | ||
"scripts": { | ||
"build": "run-p build:*", | ||
"build:main": "tsc -p tsconfig.json", | ||
"build:module": "tsc -p tsconfig.module.json", | ||
"fix": "run-s fix:*", | ||
"fix:prettier": "prettier \"src/**/*.ts\" --write", | ||
"fix:lint": "eslint src --ext .ts --fix", | ||
"test": "run-s build test:*", | ||
"test:lint": "eslint src --ext .ts", | ||
"test:prettier": "prettier \"src/**/*.ts\" --list-different", | ||
"test:unit": "nyc --silent ava", | ||
"check-cli": "run-s test diff-integration-tests check-integration-tests", | ||
"check-integration-tests": "run-s check-integration-test:*", | ||
"diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'", | ||
"watch:build": "tsc -p tsconfig.json -w", | ||
"watch:test": "nyc --silent ava --watch --verbose", | ||
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html", | ||
"cov:html": "nyc report --reporter=html", | ||
"cov:lcov": "nyc report --reporter=lcov", | ||
"cov:send": "run-s cov:lcov && codecov", | ||
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100", | ||
"doc": "run-s doc:html && open-cli build/docs/index.html", | ||
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs", | ||
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json", | ||
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs", | ||
"version": "standard-version", | ||
"reset-hard": "git clean -dfx && git reset --hard && npm i", | ||
"prepare-release": "run-s reset-hard test cov:check doc:html version" | ||
"dev": "vite", | ||
"build": "tsc && vite build && tsc", | ||
"preview": "vite preview", | ||
"test": "jest" | ||
}, | ||
"engines": { | ||
"node": ">=10" | ||
"devDependencies": { | ||
"@types/jest": "^27.4.0", | ||
"@types/node": "^17.0.6", | ||
"@typescript-eslint/eslint-plugin": "^5.8.1", | ||
"@typescript-eslint/parser": "^5.8.1", | ||
"eslint": "^7.12.1", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-config-standard": "^16.0.3", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^5.0.0", | ||
"jest": "^27.4.5", | ||
"prettier": "^2.5.1", | ||
"ts-jest": "^27.1.2", | ||
"ts-node": "^10.4.0", | ||
"typescript": "^4.4.4", | ||
"vite": "^2.7.2" | ||
}, | ||
"dependencies": { | ||
"@vue/compiler-dom": "^3.2.26", | ||
"html-entities": "^2.1.0", | ||
"hyntax": "^1.1.9" | ||
}, | ||
"devDependencies": { | ||
"@ava/typescript": "^1.1.1", | ||
"@istanbuljs/nyc-config-typescript": "^1.0.1", | ||
"@types/lodash": "^4.14.168", | ||
"@types/node": "^14.14.22", | ||
"@typescript-eslint/eslint-plugin": "^4.0.1", | ||
"@typescript-eslint/parser": "^4.0.1", | ||
"ava": "^3.12.1", | ||
"benny": "^3.6.15", | ||
"codecov": "^3.5.0", | ||
"cspell": "^4.1.0", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^7.8.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-functional": "^3.0.2", | ||
"eslint-plugin-import": "^2.22.0", | ||
"gh-pages": "^3.1.0", | ||
"html2jade": "^0.8.6", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.1.0", | ||
"open-cli": "^6.0.1", | ||
"prettier": "^2.1.1", | ||
"standard-version": "^9.0.0", | ||
"ts-node": "^9.0.0", | ||
"typedoc": "^0.19.0", | ||
"typescript": "^4.0.2" | ||
}, | ||
"files": [ | ||
"build/main", | ||
"build/module", | ||
"!**/*.spec.*", | ||
"!**/*.json", | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"ava": { | ||
"failFast": true, | ||
"timeout": "60s", | ||
"typescript": { | ||
"rewritePaths": { | ||
"src/": "build/main/" | ||
} | ||
}, | ||
"files": [ | ||
"!build/module/**" | ||
] | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "cz-conventional-changelog" | ||
} | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"arrowParens": "avoid" | ||
}, | ||
"nyc": { | ||
"extends": "@istanbuljs/nyc-config-typescript", | ||
"exclude": [ | ||
"**/*.spec.js" | ||
] | ||
"@vue/compiler-dom": "3.2.26", | ||
"html-entities": "2.3.2", | ||
"hyntax": "1.1.9" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
354745
16
4360
1
12
2
1
+ Added@vue/compiler-core@3.2.26(transitive)
+ Added@vue/compiler-dom@3.2.26(transitive)
+ Added@vue/shared@3.2.26(transitive)
+ Addedhtml-entities@2.3.2(transitive)
+ Addedsource-map@0.6.1(transitive)
- Removed@vue/compiler-core@3.5.13(transitive)
- Removed@vue/compiler-dom@3.5.13(transitive)
- Removed@vue/shared@3.5.13(transitive)
- Removedentities@4.5.0(transitive)
- Removedhtml-entities@2.5.2(transitive)
- Removedsource-map-js@1.2.1(transitive)
Updated@vue/compiler-dom@3.2.26
Updatedhtml-entities@2.3.2
Updatedhyntax@1.1.9