automatic-semicolon-insertion
Advanced tools
Comparing version 2.0.5 to 2.0.6
{ | ||
"name": "automatic-semicolon-insertion", | ||
"version": "2.0.5", | ||
"version": "2.0.6", | ||
"description": "Insert missing semicolons, remove unneeded ones.", | ||
"main": "src/index.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"test": "jest", | ||
"prepare": "tsc" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/eventualbuddha/automatic-semicolon-insertion.git" | ||
}, | ||
"files": [ | ||
"src/**/*.js", | ||
"src/**/*.d.ts" | ||
], | ||
"keywords": [ | ||
@@ -27,25 +10,36 @@ "asi", | ||
], | ||
"author": "Brian Donovan", | ||
"license": "MIT", | ||
"homepage": "https://github.com/eventualbuddha/automatic-semicolon-insertion#readme", | ||
"bugs": { | ||
"url": "https://github.com/eventualbuddha/automatic-semicolon-insertion/issues" | ||
}, | ||
"homepage": "https://github.com/eventualbuddha/automatic-semicolon-insertion#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/eventualbuddha/automatic-semicolon-insertion.git" | ||
}, | ||
"license": "MIT", | ||
"author": "Brian Donovan", | ||
"main": "build/index.js", | ||
"types": "build/index.d.ts", | ||
"files": [ | ||
"build" | ||
], | ||
"scripts": { | ||
"build": "rm -rf build && tsc", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"prepublishOnly": "npm run build" | ||
}, | ||
"dependencies": { | ||
"@babel/traverse": "^7.6.2", | ||
"@babel/types": "^7.6.1" | ||
"@babel/traverse": "^7.15.0", | ||
"@babel/types": "^7.15.0" | ||
}, | ||
"devDependencies": { | ||
"@codemod/parser": "^1.0.3", | ||
"@types/babel__traverse": "^7.0.7", | ||
"@types/jest": "^24.0.15", | ||
"@codemod/parser": "^1.1.1", | ||
"@types/babel__traverse": "^7.14.2", | ||
"@types/jest": "^27.0.1", | ||
"@types/node": "^12.6.8", | ||
"jest": "^24.8.0", | ||
"jest-junit": "^7.0.0", | ||
"ts-jest": "^24.0.2", | ||
"typescript": "^3.5.3" | ||
"jest": "^27.0.6", | ||
"ts-jest": "^27.0.5", | ||
"typescript": "^4.3.5" | ||
}, | ||
"resolutions": { | ||
"**/@babel/types": "7.6.1" | ||
}, | ||
"publishConfig": { | ||
@@ -52,0 +46,0 @@ "registry": "https://registry.npmjs.org/" |
@@ -8,4 +8,2 @@ # automatic-semicolon-insertion | ||
```sh | ||
$ yarn add automatic-semicolon-insertion | ||
# or via npm | ||
$ npm install automatic-semicolon-insertion | ||
@@ -12,0 +10,0 @@ ``` |
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
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
12020
7
7
298
27
1
Updated@babel/traverse@^7.15.0
Updated@babel/types@^7.15.0