-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
921 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,28 +6,18 @@ | |
"repository": "ssh://[email protected]/ymmooot/nuxt-jsonld.git", | ||
"author": "Ryota Yamamoto <[email protected]>", | ||
"license": "MIT", | ||
"keywords": [ | ||
"attribute", | ||
"head", | ||
"meta", | ||
"seo", | ||
"vue", | ||
"nuxt", | ||
"jsonld" | ||
], | ||
"keywords": ["attribute", "head", "meta", "seo", "vue", "nuxt", "jsonld"], | ||
"scripts": { | ||
"test": "jest", | ||
"test:ci": "jest --coverage && codecov", | ||
"prebuild": "rimraf lib", | ||
"build": "tsc -p .", | ||
"preversion": "npm run build", | ||
"release": "semantic-release", | ||
"release": "shipjs prepare", | ||
"lint": "eslint --ext .ts,.js .", | ||
"lint:fix": "eslint --ext .ts,.js --fix ." | ||
}, | ||
"files": [ | ||
"lib" | ||
], | ||
"files": ["lib"], | ||
"typings": "./lib/index.d.ts", | ||
"dependencies": { | ||
"schema-dts": "^1.0.0" | ||
|
@@ -48,6 +38,7 @@ | |
"prettier": "^2.4.1", | ||
"rimraf": "^3.0.0", | ||
"semantic-release": "^18.0.0", | ||
"shipjs": "0.25.1", | ||
"ts-jest": "^27.0.7", | ||
"typescript": "^4.4.4", | ||
"vue": "^2.6.12", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = { | ||
publishCommand: ({ isYarn }) => { | ||
return isYarn | ||
? `npm_config_registry=https://registry.npmjs.org/ npm publish --tag v1-lts` | ||
: `npm publish --tag v1-lts`; | ||
}, | ||
}; |
Oops, something went wrong.