From 919a30c6a0f67f39f5732377dc0ccb85ca957f5e Mon Sep 17 00:00:00 2001 From: Takuto Wada Date: Mon, 23 Dec 2024 05:48:55 +0900 Subject: [PATCH] chore: apply fixpkg --- package.json | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/package.json b/package.json index a43c2f4..0aef4a2 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,25 @@ { "name": "espurify", - "description": "Clone AST without extra properties", "version": "3.1.0", + "description": "Clone AST without extra properties", + "keywords": [ + "ast", + "estree", + "ecmascript", + "es6" + ], + "homepage": "https://github.com/estools/espurify", + "bugs": "https://github.com/estools/espurify/issues", + "repository": { + "type": "git", + "url": "git://github.com/estools/espurify.git" + }, + "license": "MIT", "author": { "name": "Takuto Wada", "email": "takuto.wada@gmail.com", "url": "https://github.com/twada" }, - "bugs": "https://github.com/estools/espurify/issues", "contributors": [ { "name": "Renée Kooi", @@ -18,15 +30,8 @@ "url": "https://github.com/papandreou" } ], - "devDependencies": { - "acorn": "^8.0.0", - "babel-types": "^6.3.20", - "babylon": "^6.3.20", - "esprima": "^4.0.0", - "estraverse": "^5.0.0", - "semistandard": "^17.0.0", - "snazzy": "^9.0.0" - }, + "type": "commonjs", + "main": "index.js", "files": [ "CHANGELOG.md", "MIT-LICENSE.txt", @@ -35,31 +40,26 @@ "lib", "package.json" ], - "homepage": "https://github.com/estools/espurify", - "keywords": [ - "ast", - "estree", - "ecmascript", - "es6" - ], - "license": "MIT", - "main": "index.js", - "repository": { - "type": "git", - "url": "git://github.com/estools/espurify.git" - }, "scripts": { "preversion": "npm test", "lint": "semistandard --verbose index.js lib test | snazzy", "fmt": "semistandard --fix index.js lib test", "test": "npm run lint && node --test" }, + "devDependencies": { + "acorn": "^8.0.0", + "babel-types": "^6.3.20", + "babylon": "^6.3.20", + "esprima": "^4.0.0", + "estraverse": "^5.0.0", + "semistandard": "^17.0.0", + "snazzy": "^9.0.0" + }, "semistandard": { "ignore": [ "/build/", "/bench/", "**/*.jsx" ] - }, - "type": "commonjs" + } }