edge-parser
Advanced tools
Comparing version 8.0.11 to 8.0.12
# The MIT License | ||
Copyright 2021 Harminder Virk, contributors | ||
Copyright 2022 Harminder Virk, contributors | ||
@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
{ | ||
"name": "edge-parser", | ||
"version": "8.0.11", | ||
"version": "8.0.12", | ||
"description": "Parser for edge template engine", | ||
@@ -13,3 +13,3 @@ "main": "build/index.js", | ||
"pretest": "npm run lint", | ||
"test": "node japaFile.js", | ||
"test": "node .bin/test.js", | ||
"build": "npm run compile", | ||
@@ -21,3 +21,3 @@ "mrm": "mrm --preset=@adonisjs/mrm-preset", | ||
"compile": "npm run lint && npm run clean && tsc", | ||
"release": "np", | ||
"release": "np --message=\"chore(release): %s\"", | ||
"version": "npm run build", | ||
@@ -37,29 +37,31 @@ "lint": "eslint . --ext=.ts", | ||
"dependencies": { | ||
"acorn": "^8.4.1", | ||
"astring": "^1.7.5", | ||
"edge-error": "^2.0.6", | ||
"edge-lexer": "^4.0.8", | ||
"acorn": "^8.7.0", | ||
"astring": "^1.8.1", | ||
"edge-error": "^2.0.7", | ||
"edge-lexer": "^4.0.9", | ||
"js-stringify": "^1.0.2" | ||
}, | ||
"devDependencies": { | ||
"@adonisjs/mrm-preset": "^4.1.2", | ||
"@adonisjs/require-ts": "^2.0.8", | ||
"@adonisjs/mrm-preset": "^5.0.2", | ||
"@adonisjs/require-ts": "^2.0.10", | ||
"@types/acorn": "^4.0.6", | ||
"@types/astring": "^1.7.0", | ||
"@types/node": "^16.7.10", | ||
"@types/node": "^17.0.21", | ||
"commitizen": "^4.2.4", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"dedent-js": "^1.0.1", | ||
"del-cli": "^4.0.1", | ||
"doctoc": "^2.0.1", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-adonis": "^1.3.3", | ||
"doctoc": "^2.1.0", | ||
"eslint": "^8.10.0", | ||
"eslint-config-prettier": "^8.4.0", | ||
"eslint-plugin-adonis": "^2.1.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"github-label-sync": "^2.0.2", | ||
"husky": "^7.0.2", | ||
"japa": "^3.1.1", | ||
"mrm": "^3.0.8", | ||
"np": "^7.5.0", | ||
"prettier": "^2.3.2", | ||
"typescript": "^4.4.2", | ||
"youch": "^2.2.2" | ||
"husky": "^7.0.4", | ||
"japa": "^4.0.0", | ||
"mrm": "^3.0.10", | ||
"np": "^7.6.0", | ||
"prettier": "^2.5.1", | ||
"typescript": "^4.5.5", | ||
"youch": "^3.1.1" | ||
}, | ||
@@ -84,3 +86,2 @@ "config": { | ||
"hooks": { | ||
"pre-commit": "doctoc README.md --title='## Table of contents' && git add README.md", | ||
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js" | ||
@@ -100,3 +101,46 @@ } | ||
}, | ||
"homepage": "https://github.com/edge-js/parser#readme" | ||
"homepage": "https://github.com/edge-js/parser#readme", | ||
"mrmConfig": { | ||
"core": false, | ||
"license": "MIT", | ||
"services": [ | ||
"github-actions" | ||
], | ||
"minNodeVersion": "14.15.4", | ||
"probotApps": [ | ||
"stale", | ||
"lock" | ||
], | ||
"runGhActionsOnWindows": true | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"plugin:adonis/typescriptPackage", | ||
"prettier" | ||
], | ||
"plugins": [ | ||
"prettier" | ||
], | ||
"rules": { | ||
"prettier/prettier": [ | ||
"error", | ||
{ | ||
"endOfLine": "auto" | ||
} | ||
] | ||
} | ||
}, | ||
"eslintIgnore": [ | ||
"build" | ||
], | ||
"prettier": { | ||
"trailingComma": "es5", | ||
"semi": false, | ||
"singleQuote": true, | ||
"useTabs": false, | ||
"quoteProps": "consistent", | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"printWidth": 100 | ||
} | ||
} |
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
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
75332
22
Updatedacorn@^8.7.0
Updatedastring@^1.8.1
Updatededge-error@^2.0.7
Updatededge-lexer@^4.0.9