-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "encore-entrypoints-analyzer",
"version": "0.0.2",
"description": "Webpack plugin for Symfony Encore that shows entrypoints.json file content in an interactive map",
"keywords": [
"webpack",
"symfony",
"bundle",
"analyzer",
"encore"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "rm -rf dev && tsc -outDir ./dev && cp ./utils/develop.js ./dev && cd dev && node develop.js",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write $1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lomby92/encore-entrypoints-analyzer.git"
},
"author": "Giacomo Lombardi",
"license": "MIT",
"bugs": {
"url": "https://github.com/lomby92/encore-entrypoints-analyzer/issues"
},
"homepage": "https://github.com/lomby92/encore-entrypoints-analyzer#readme",
"devDependencies": {
"@types/webpack": "5.28.0",
"graphology-types": "0.23.0",
"prettier": "2.5.1",
"typescript": "4.5.4"
},
"dependencies": {
"graphology": "0.23.2",
"kotatsu": "0.22.3",
"sigma": "2.1.3"
}
}