forked from sfrieson/circular-dependency-plugin-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "circular-dependency-plugin-visualizer",
"version": "1.1.0",
"description": "A tool to help you visualize and understand circular dependencies in your webpack build.",
"main": "src/index.js",
"scripts": {
"cypress": "cypress open",
"pree2e": "npm run test-server &",
"e2e": "node ./test/generate-output && wait-on http://localhost:3000 && cypress run",
"poste2e": "./test/kill-server.sh",
"lint": "prettier --write .",
"test": "jest --coverage",
"test-server": "node test/server",
"prepublish": "npm run lint && npm run test && npm run e2e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sfrieson/circular-dependency-plugin-visualizer.git"
},
"keywords": [
"circular",
"dependency",
"webpack",
"visualization"
],
"author": "Steven Frieson",
"license": "ISC",
"bugs": {
"url": "https://github.com/sfrieson/circular-dependency-plugin-visualizer/issues"
},
"homepage": "https://github.com/sfrieson/circular-dependency-plugin-visualizer#readme",
"peerDependencies": {
"circular-dependency-plugin": ">= 4.4.0"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.3",
"cypress": "^5.1.0",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^24.9.0",
"prettier": "^2.2.1",
"wait-on": "^3.3.0"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"<rootDir>/cypress"
]
},
"semistandard": {
"globals": [
"context",
"cy",
"jest",
"expect",
"it",
"describe",
"beforeEach",
"test"
]
}
}