-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.1 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.1 KB
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
{
"name": "peer-dependency-checker",
"version": "1.0.1",
"description": "Smart dependency compatibility checker that prevents peer dependency conflicts before you upgrade",
"main": "dist/index.js",
"bin": {
"peer-dependency-checker": "bin/pdc.js",
"pdc": "bin/pdc.js",
"pdc-install": "bin/pdc-install",
"pdc-setup": "bin/setup.js"
},
"scripts": {
"build": "chmod +x bin/pdc.js && chmod +x bin/pdc-install && chmod +x bin/setup-hooks.sh && chmod +x bin/setup.js && chmod +x bin/pdc",
"dev": "npm run build",
"test": "node test/integration.test.js",
"test:integration": "node test/integration.test.js",
"test:journey": "node test/user-journey.test.js",
"test:external": "node test/external-dev-simulation.test.js",
"test:published": "node test/simulate-published.test.js",
"test:all": "npm run test:integration && npm run test:journey",
"test:full": "npm run test:all && npm run test:external && npm run test:published",
"prepublishOnly": "npm run build && npm run test:all",
"preinstall": "pdc scan --quick || true",
"postinstall": "pdc analyze --brief || true",
"setup-hooks": "./bin/setup-hooks.sh"
},
"keywords": [
"hyperdrift",
"dependency",
"peer-dependency",
"compatibility",
"npm",
"package",
"upgrade",
"conflict",
"check",
"cli",
"tool",
"developer-experience"
],
"author": "Hyperdrift Team <team@hyperdrift.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperdrift-io/peer-dependency-checker.git"
},
"bugs": {
"url": "https://github.com/hyperdrift-io/peer-dependency-checker/issues"
},
"homepage": "https://github.com/hyperdrift-io/peer-dependency-checker#readme",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"public/"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0"
},
"devDependencies": {
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0"
}
}