-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 1.96 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
{
"name": "@cvent/pnpm-lock-export",
"version": "0.4.0",
"description": "A utility for converting pnpm-lock.yaml to other lockfile formats",
"main": "dist/src/index.js",
"files": [
"dist/"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bin": "dist/src/bin/pnpm-lock-export.js",
"scripts": {
"build": "tsc",
"registry-mock": "registry-mock prepare && registry-mock",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix . && prettier --write ."
},
"author": "Jonathan Morley <jmorley@cvent.com>",
"license": "MIT",
"dependencies": {
"@manypkg/get-packages": "^1.1.3",
"@pnpm/lockfile-file": "^5.1.4",
"@pnpm/lockfile-utils": "^4.1.0",
"@pnpm/logger": "^4.0.0",
"@pnpm/prune-lockfile": "^4.0.12",
"@pnpm/read-project-manifest": "^3.0.6",
"@pnpm/types": "^8.4.0",
"argparse": "^2.0.1",
"dependency-path": "^9.2.3",
"semver": "^7.3.7"
},
"devDependencies": {
"@pnpm/lockfile-types": "^4.2.0",
"@pnpm/registry-mock": "^2.20.0",
"@swc/core": "^1.2.218",
"@swc/jest": "^0.2.22",
"@tsconfig/node16-strictest": "^1.0.0",
"@types/argparse": "^2.0.10",
"@types/jest": "^28.1.6",
"@types/node": "^16",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"tmp-promise": "^3.0.3",
"typescript": "^4.7.4"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"dist/"
]
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
}
}