-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.86 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
{
"name": "depngn",
"version": "0.6.0",
"description": "Determine the compatibility of your packages with a given Node version",
"author": "Lewis D'Avanzo",
"license": "MIT",
"bugs": "https://github.com/upgradejs/depngn/issues",
"repository": "github:upgradejs/depngn",
"keywords": [
"engines",
"dependencies",
"upgrade",
"version",
"semver",
"cli"
],
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./report": {
"import": "./dist/report/index.mjs",
"default": "./dist/report/index.js"
}
},
"bin": {
"depngn": "bin/depngn.cjs"
},
"files": [
"dist",
"bin",
"src"
],
"scripts": {
"predev": "npm run build",
"dev": "./bin/depngn.cjs",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "npx ts-node scripts/build.ts",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"arg": "^5.0.2",
"compare-versions": "^5.0.1",
"fancy-log": "^2.0.0",
"kleur": "^4.1.5",
"table": "^6.8.0"
},
"devDependencies": {
"@swc/core": "^1.3.42",
"@types/fancy-log": "^2.0.0",
"@types/jest": "^29.1.1",
"@types/node": "^18.7.19",
"@types/semver": "^7.3.12",
"@types/signal-exit": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"signal-exit": "^3.0.7",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^4.8.3"
}
}