This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
113 lines (113 loc) · 3.88 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
{
"name": "diagram-maker-plugin-minimap",
"version": "1.0.1",
"description": "A minimap plugin package for diagram-maker",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/"
},
"homepage": "https://awslabs.github.io/diagram-maker-plugin-minimap",
"contributors": [
"Sameer Goyal <[email protected]>",
"Matthew Oakes <[email protected]>"
],
"engines": {
"node": ">=8"
},
"main": "dist/diagramMakerMinimap.js",
"types": "dist/diagramMakerMinimap.d.ts",
"typings": "dist/diagramMakerMinimap.d.ts",
"keywords": [
"aws",
"visualizaton",
"diagram",
"interactive",
"canvas",
"editor",
"drag",
"drop",
"workflow",
"state-machine",
"flowchart",
"diagram-maker",
"minimap"
],
"devDependencies": {
"@cypress/code-coverage": "^3.9.10",
"@types/classnames": "2.2.x",
"@types/jest": "^26.0.24",
"@types/lodash-es": "^4.17.4",
"@types/react": "16.8.x",
"@types/react-dom": "16.8.x",
"@types/react-test-renderer": "16.8.x",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.2",
"autoprefixer": "^9.8.6",
"classnames": "2.2.x",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^3.0.2",
"cypress": "5.0.x",
"diagram-maker": "1.0.x",
"dts-bundle-generator": "5.4.x",
"es6-shim": "0.35.x",
"fork-ts-checker-webpack-plugin": "^6.3.2",
"glob-parent": ">=5.1.2",
"html-webpack-plugin": "^5.3.2",
"istanbul-instrumenter-loader": "3.0.x",
"istanbul-lib-coverage": "3.0.x",
"jest": "26.4.x",
"jest-snapshot": "26.4.x",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^7.0.0",
"nyc": "15.x",
"postcss": "^8.3.6",
"postcss-import": "^14.0.1",
"postcss-loader": "^5.2.0",
"postcss-scss": "^3.0.5",
"react": "16.8.x",
"react-dom": "16.8.x",
"react-test-renderer": "16.8.x",
"redux": "4.0.x",
"sass-loader": "^11.0.1",
"ts-jest": "26.3.x",
"ts-loader": "^8.1.0",
"tslint": "5.11.x",
"tslint-config-airbnb": "5.9.x",
"tslint-eslint-rules": "5.3.x",
"tslint-react": "3.6.x",
"typescript": "4.2.x",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "5.1.x"
},
"peerDependencies": {
"diagram-maker": "*"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"clean": "rm -rf ./build && rm -rf ./coverage && rm -rf ./dist",
"start": "webpack serve --config webpack.dev.js",
"server": "npm run start",
"server:remote": "REMOTE=true npm run start",
"lint": "tslint --config tslint.json --project tsconfig.json -t stylish",
"lint:fix": "tslint --config tslint.json --project tsconfig.json -t stylish --fix",
"test": "tsc --noEmit -p . && jest --config jest.json",
"test:dev": "tsc --noEmit -p . && jest --config jest.json --watch",
"test:update": "tsc --noEmit -p . && jest --config jest.json --updateSnapshot",
"copy:demo": "cp -r dist/examples docs",
"release": "npm run lint && npm run test && npm run build && npm run release:integ && npm run copy:demo",
"build:integ": "webpack --config webpack.static.js",
"lint:integ": "tslint --config tslint.json --project ./cypress/tsconfig.json -t stylish",
"lint:integ:fix": "tslint --config tslint.json --project ./cypress/tsconfig.json -t stylish --fix",
"test:integ": "npm run build:integ && tsc --noEmit -p ./cypress && cypress run --env coverage=true",
"test:integ:dev": "tsc --noEmit -p ./cypress && cypress open --config baseUrl=http://localhost:31213 --env coverage=true",
"release:integ": "npm run build:integ && npm run lint:integ && tsc --noEmit -p ./cypress && npm run test:integ",
"prepublishOnly": "npm run clean && npm run release"
},
"repository": {
"type": "git",
"url": "git://github.com/awslabs/diagram-maker-plugin-minimap"
}
}