-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.14 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "chi-wc",
"license": "MIT",
"version": "0.9.3",
"author": "Manuel Martin <manuel.martin@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/manolakis/chi-wc.git"
},
"homepage": "https://github.com/manolakis/chi-wc",
"bugs": {
"url": "https://github.com/manolakis/chi-wc/issues"
},
"main": "index.js",
"module": "index.js",
"exports": {
"./button": "./packages/button.js",
"./core": "./packages/core.js",
"./form-core": "./packages/form-core.js",
"./foundations": "./packages/foundations.js",
"./header": "./packages/header.js",
"./helpers": "./packages/helpers.js",
"./icon": "./packages/icon.js",
"./input": "./packages/input.js",
"./localize": "./packages/localize.js",
"./overlays": "./packages/overlays.js",
"./style": "./packages/style.js",
"./validate-messages": "./packages/validate-messages.js"
},
"scripts": {
"debug": "web-test-runner \"packages/**/*.test.js\" --watch",
"dev-server": "web-dev-server",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint --ext .js,.html . --fix",
"format:prettier": "prettier \"**/*.{js,md}\" --write",
"lint": "run-p lint:*",
"lint:eclint": "git ls-files | xargs eclint check",
"lint:eslint": "eslint --ext .js,.html .",
"lint:markdownlint": "git ls-files '*.md' | xargs markdownlint --ignore '{.changeset/*.md,**/CHANGELOG.md}'",
"lint:prettier": "prettier \"**/*.js\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"release": "changeset publish",
"start": "npm run storybook",
"storybook": "start-storybook -p 9001 -s ./dev-assets",
"storybook:build": "NODE_OPTIONS='--max-old-space-size=8192' build-storybook",
"storybook:build:start": "npm run storybook:build && web-dev-server --root-dir storybook-static --open",
"test": "run-p test:browser",
"test:browser": "web-test-runner \"packages/**/*.test.js\" --coverage",
"test:browser:all": "web-test-runner \"packages/**/*.test.js\" --playwright --browsers webkit chromium firefox --coverage",
"test:browser:watch": "web-test-runner \"packages/**/*.test.js\" --watch"
},
"dependencies": {
"@lion/button": "^0.7.13",
"@lion/core": "^0.12.0",
"@lion/form-core": "^0.6.1",
"@lion/icon": "^0.7.4",
"@lion/input": "^0.9.2",
"@lion/localize": "^0.14.4",
"@lion/overlays": "^0.19.0",
"@lion/validate-messages": "^0.2.15",
"singleton-manager": "^1.1.2"
},
"devDependencies": {
"@changesets/cli": "^2.10.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@lion/helpers": "^0.5.8",
"@mdjs/core": "^0.4.0",
"@open-wc/demoing-storybook": "^2.0.2",
"@open-wc/eslint-config": "^3.0.0",
"@open-wc/testing": "^2.3.9",
"@open-wc/testing-helpers": "^1.8.9",
"@storybook/addon-a11y": "^6.0.21",
"@web/dev-server": "^0.0.10",
"@web/test-runner": "^0.7.24",
"@web/test-runner-playwright": "^0.5.6",
"@webcomponents/webcomponentsjs": "^2.4.0",
"babel-eslint": "^10.0.3",
"babel-polyfill": "^6.26.0",
"eclint": "^2.8.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-lit": "^1.3.0",
"eslint-plugin-wc": "^1.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"markdownlint-cli": "^0.23.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prettier-package-json": "^2.1.3",
"sinon": "^9.0.3",
"whatwg-fetch": "^3.0.0"
},
"keywords": [
"ux-chi",
"lion",
"chi",
"web",
"components",
"webcomponents"
],
"files": [
"*.js",
"*.md",
"assets",
"packages",
"!**/test/*"
],
"lint-staged": {
"*": [
"eclint fix",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"markdownlint --ignore '{.changeset/*.md,**/CHANGELOG.md}'",
"git add"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
}
}