forked from WillBooster/plantuml-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.91 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
{
"name": "plantuml-visualizer",
"version": "0.0.0-semantically-released",
"private": true,
"description": "A Chrome / Firefox extension for visualizing PlantUML code.",
"homepage": "https://github.com/WillBooster/plantuml-visualizer",
"bugs": {
"url": "https://github.com/WillBooster/plantuml-visualizer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WillBooster/plantuml-visualizer.git"
},
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"scripts": {
"build": "cross-env NODE_ENV=production yarn build-common",
"build-common": "yarn recreate-dist && rollup -c",
"build-dev": "cross-env NODE_ENV=development yarn build-common",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettier",
"lint": "eslint \"./{packages/*/,}{src,__tests__}/**/*.{js,jsx,ts,tsx}\"",
"lint-fix": "yarn lint --fix",
"package": "shx rm -f plantuml-visualizer-v*.tgz dist-*.zip && yarn pack && yarn build && cd dist && bestzip ../dist.zip *",
"prettier": "prettier --write \"**/{.*/,}*.{css,htm,html,js,json,jsx,md,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"",
"recreate-dist": "shx rm -Rf dist && shx mkdir dist && shx cp -r icon manifest.json dist/",
"release": "dotenv -- semantic-release",
"release-test": "yarn release -d",
"start": "cross-env NODE_ENV=development yarn build-common -w",
"typecheck": "tsc --noEmit"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"jquery": "3.5.1",
"zlib.es": "0.6.0"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.26.0",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-numeric-separator": "7.12.7",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.1.0",
"@types/chrome": "0.0.128",
"@types/jquery": "3.5.5",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"@willbooster/eslint-config-ts": "5.1.1",
"@willbooster/prettier-config": "5.1.0",
"@willbooster/renovate-config": "5.1.1",
"babel-plugin-transform-remove-console": "6.9.4",
"bestzip": "2.1.7",
"cross-env": "7.0.3",
"dotenv-cli": "4.0.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"rollup": "2.38.0",
"semantic-release": "17.3.7",
"semantic-release-chrome": "1.1.3",
"semantic-release-firefox-add-on": "0.2.8",
"shx": "0.3.3",
"sort-package-json": "1.48.1",
"typescript": "4.1.3"
}
}