refactor: ordering package.json
This commit is contained in:
parent
a6c66e3278
commit
64947efc75
2 changed files with 15410 additions and 78 deletions
15421
package-lock.json
generated
15421
package-lock.json
generated
File diff suppressed because it is too large
Load diff
67
package.json
67
package.json
|
@ -2,38 +2,48 @@
|
||||||
"name": "markdowny",
|
"name": "markdowny",
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"description": "A set of command-line tools for working with Markdown files with YAML headers.",
|
"description": "A set of command-line tools for working with Markdown files with YAML headers.",
|
||||||
|
"keywords": [
|
||||||
|
"markdown"
|
||||||
|
],
|
||||||
|
"homepage": "https://git.mfgames.com/author-intrusion/markdowny#README",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://git.mfgames.com/author-intrusion/markdowny/issues"
|
||||||
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://gitlab.com/mfgames-writing/markdowny.git"
|
"url": "https://gitlab.com/mfgames-writing/markdowny.git"
|
||||||
},
|
},
|
||||||
"main": "lib/index",
|
"license": "MIT",
|
||||||
"types": "lib/index.d.ts",
|
|
||||||
"scripts": {
|
|
||||||
"build": "tsc",
|
|
||||||
"barrels": "barrelsby --delete --location all --directory src --exclude '(tests|cli|tools)'",
|
|
||||||
"lint": "eslint -c .eslintrc.yml src/**/*.ts --fix",
|
|
||||||
"format": "tsfmt -r",
|
|
||||||
"clean": "rimraf lib",
|
|
||||||
"prebuild": "npm run barrels && npm run lint && npm run format && npm run clean",
|
|
||||||
"prepack": "npm run build",
|
|
||||||
"commitmsg": "commitlint -E GIT_PARAMS"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"markdown"
|
|
||||||
],
|
|
||||||
"author": {
|
"author": {
|
||||||
"email": "d.moonfire@mfgames.com",
|
|
||||||
"name": "Dylan R. E. Moonfire",
|
"name": "Dylan R. E. Moonfire",
|
||||||
|
"email": "d.moonfire@mfgames.com",
|
||||||
"url": "https://mfgames.com/"
|
"url": "https://mfgames.com/"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"main": "lib/index",
|
||||||
"bugs": {
|
"types": "lib/index.d.ts",
|
||||||
"url": "https://git.mfgames.com/author-intrusion/markdowny/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://git.mfgames.com/author-intrusion/markdowny#README",
|
|
||||||
"bin": {
|
"bin": {
|
||||||
"markdowny": "./bin/markdowny",
|
"markdowny": "bin/markdowny",
|
||||||
"markdowny-wc": "./bin/markdowny-wc"
|
"markdowny-wc": "bin/markdowny-wc"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"barrels": "barrelsby --delete --location all --directory src --exclude '(tests|cli|tools)'",
|
||||||
|
"prebuild": "npm run barrels && npm run lint && npm run format && npm run clean",
|
||||||
|
"build": "tsc",
|
||||||
|
"clean": "rimraf lib",
|
||||||
|
"commitmsg": "commitlint -E GIT_PARAMS",
|
||||||
|
"format": "tsfmt -r && sort-package-json package.json",
|
||||||
|
"lint": "eslint -c .eslintrc.yml src/**/*.ts --fix",
|
||||||
|
"prepack": "npm run build"
|
||||||
|
},
|
||||||
|
"commitlint": {
|
||||||
|
"extends": [
|
||||||
|
"@commitlint/config-conventional"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"commitizen": {
|
||||||
|
"path": "./node_modules/cz-conventional-changelog"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/node": "^6.0.46",
|
"@types/node": "^6.0.46",
|
||||||
|
@ -64,6 +74,7 @@
|
||||||
"husky": "^0.14.3",
|
"husky": "^0.14.3",
|
||||||
"rimraf": "^2.6.2",
|
"rimraf": "^2.6.2",
|
||||||
"semantic-release": "^15.9.8",
|
"semantic-release": "^15.9.8",
|
||||||
|
"sort-package-json": "^1.48.1",
|
||||||
"typescript": "^3.0.1",
|
"typescript": "^3.0.1",
|
||||||
"typescript-eslint-parser": "^18.0.0",
|
"typescript-eslint-parser": "^18.0.0",
|
||||||
"typescript-formatter": "^7.2.2"
|
"typescript-formatter": "^7.2.2"
|
||||||
|
@ -88,15 +99,5 @@
|
||||||
],
|
],
|
||||||
"success": [],
|
"success": [],
|
||||||
"fail": []
|
"fail": []
|
||||||
},
|
|
||||||
"commitlint": {
|
|
||||||
"extends": [
|
|
||||||
"@commitlint/config-conventional"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"commitizen": {
|
|
||||||
"path": "./node_modules/cz-conventional-changelog"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue