mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "@open-wc/root",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"bootstrap": "lerna bootstrap --hoist --no-ci",
|
|
"lint": "run-p lint:*",
|
|
"lint:eslint": "eslint --ext .js,.html .",
|
|
"lint:prettier": "prettier packages/**/*.js --write",
|
|
"publish": "lerna publish --message 'chore: release new versions'",
|
|
"site:build": "npm run vuepress:build",
|
|
"site:start": "npm run vuepress:start",
|
|
"test": "lerna run test --stream --concurrency 1",
|
|
"test:ci": "lerna run test:ci",
|
|
"test:es5": "lerna run test:es5 --stream --concurrency 1",
|
|
"test:es5:bs": "lerna run test:es5:bs --stream --concurrency 1",
|
|
"vuepress:build": "vuepress build docs",
|
|
"vuepress:start": "vuepress dev docs"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "7.2.1",
|
|
"@commitlint/config-conventional": "7.1.2",
|
|
"@commitlint/config-lerna-scopes": "7.2.1",
|
|
"eslint-config-prettier": "^3.3.0",
|
|
"husky": "1.1.2",
|
|
"lerna": "3.4.3",
|
|
"lint-staged": "^8.1.0",
|
|
"npm-run-all": "4.1.3",
|
|
"prettier": "^1.15.0",
|
|
"vuepress": "1.0.0-alpha.18"
|
|
}
|
|
}
|