forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@open-wc/root",
"private": true,
"license": "MIT",
"scripts": {
"build": "lerna run build",
"build:types": "tsc -p tsconfig.build.types.json",
"codelabs:build": "node ./packages/codelabs/build-codelabs.js",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint --ext .js,.html . --fix",
"format:prettier": "prettier \"**/*.{js,md}\" \"**/package.json\" --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .js,.html .",
"lint:prettier": "prettier \"**/*.{js,md}\" \"**/package.json\" --check",
"lint:types": "tsc",
"lint:versions": "node ./scripts/lint-versions.js",
"postinstall": "npm run build",
"prevuepress:build": "npm run vuepress:copy-static",
"prevuepress:start": "npm run vuepress:copy-static",
"publish": "lerna publish --message 'chore: release new versions'",
"site:build": "npm run vuepress:build && lerna run site:build",
"site:start": "npm run vuepress:start",
"test": "yarn test:browser && yarn test:node",
"test:browser": "karma start --coverage",
"test:browser:prune-snapshots": "karma start --prune-snapshots",
"test:browser:update-snapshots": "karma start --update-snapshots",
"test:browser:watch": "karma start --auto-watch=true --single-run=false",
"test:bs": "karma start karma.bs.conf.js --coverage",
"test:node": "lerna run test:node",
"test:update-snapshots": "lerna run test:update-snapshots",
"update-dependency": "node scripts/update-dependency.js && yarn format",
"vuepress:build": "vuepress build docs",
"vuepress:copy-static": "cp -f packages/demoing-storybook/demo/custom-elements.json docs/.vuepress/public/demoing/demo/custom-elements.json",
"vuepress:start": "vuepress dev docs"
},
"dependencies": {
"@github/clipboard-copy-element": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"@commitlint/config-lerna-scopes": "7.2.1",
"@open-wc/testing-karma": "file:./packages/testing-karma",
"@open-wc/testing-karma-bs": "file:./packages/testing-karma-bs",
"@types/chai-fs": "^2.0.2",
"@vuepress/plugin-google-analytics": "^1.0.0-alpha.30",
"@vuepress/plugin-pwa": "^1.2.0",
"babel-eslint": "^10.0.3",
"core-js": "2.6.10",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-wc": "^1.2.0",
"fs-extra": "^8.1.0",
"husky": "3.0.0",
"lerna": "3.4.3",
"lint-staged": "^9.2.0",
"npm-run-all": "4.1.3",
"prettier": "^1.19.1",
"prettier-plugin-package": "^0.3.1",
"rimraf": "^3.0.0",
"typescript": "^3.7.3",
"vuepress": "^1.3.0",
"webpack-merge": "^4.1.5"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
},
"workspaces": [
"packages/*"
]
}