-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.94 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
{
"name": "missing-coordinates-monorepo",
"version": "0.0.0",
"description": "Parallel coordinates for missing data and a demo for it.",
"author": "Alex Bäuerle <alex@a13x.io> (https://a13x.io)",
"repository": "git@github.com:Sparkier/Missing-Coordinates.git",
"bugs": {
"url": "https://github.com/Sparkier/Missing-Coordinates/issues"
},
"private": true,
"license": "BSD-3-Clause",
"scripts": {
"postpublish": "git push; git push --tags",
"build": "yarn workspace missing-coordinates build",
"build:storybook": "yarn build && yarn workspace missing-coordinates-demo demo:build",
"lint": "eslint . --ext .svelte,.ts && yarn workspace missing-coordinates validate",
"lint:fix": "eslint . --ext .svelte,.ts --fix",
"storybook": "yarn build && yarn workspace missing-coordinates-demo storybook",
"clean": "rm -rf ./packages/missing-coordinates/dist && rm -rf ./packages/storybook/_gh-pages",
"release": "yarn workspace missing-coordinates semantic-release --branches main"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@tsconfig/svelte": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-svelte3": "^3.4.1",
"semantic-release": "^19.0.3",
"typescript": "^4.7.3"
},
"engines": {
"node": ">10",
"npm": ">=6",
"yarn": ">=1.13.0"
},
"workspaces": [
"./packages/*"
],
"browserslist": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 3 safari versions",
"last 3 edge versions"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}