-
Notifications
You must be signed in to change notification settings - Fork 478
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "js2flowchart",
"version": "1.3.5",
"author": "Bohdan Liashenko",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bogdan-Lyashenko/js-code-to-svg-flowchart.git"
},
"main": "dist/js2flowchart.js",
"scripts": {
"dev": "webpack --progress --colors --watch --env dev",
"build": "NODE_ENV=production webpack --progress",
"babel-compile": "babel src -d build --copy-files",
"pretty": "prettier --write \"./src/**/*.js\" \"./cli/*.js\""
},
"bin": {
"js2flowchart": "./cli/index.cli.js"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"prettier": "3.0.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"keywords": [
"svg",
"code analyzeing",
"webpack",
"es6",
"library",
"universal",
"umd",
"commonjs"
],
"dependencies": {
"@babel/generator": "^7.22.10",
"@babel/parser": "^7.22.10",
"@babel/traverse": "^7.22.10",
"commander": "^11.0.0",
"deepmerge": "^4.3.1",
"global": "^4.4.0",
"string-width": "^6.1.0",
"xml-escape": "^1.1.0"
}
}