-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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
{
"name": "jscodeshift-adapters",
"version": "1.0.2",
"description": "jscodeshift adapters for various file types",
"type": "module",
"main": "./dist/cjs/index.cjs",
"types": "./dist/cjs/index.d.cts",
"module": "./dist/esm/index.js",
"files": [
"dist/"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"build:clean": "rm -rf ./dist",
"build": "npm run build:clean && tsc -p tsconfig.all.json && duel --dirs && publint",
"prepublishOnly": "npm run build"
},
"author": "Francis Nimick <fnimick@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fnimick/jscodeshift-adapters.git"
},
"bugs": {
"url": "https://github.com/fnimick/jscodeshift-adapters/issues"
},
"homepage": "https://github.com/fnimick/jscodeshift-adapters#readme",
"dependencies": {
"@vue/compiler-sfc": "^3.4.23",
"node-html-parser": "^6.1.13",
"rambda": "^9.2.1",
"svelte": "^4.2.18"
},
"peerDependencies": {
"jscodeshift": "^0.15.0 || ^0.16.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@knighted/duel": "^1.0.8",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/jscodeshift": "^0.11.11",
"@types/node": "^20.14.12",
"eslint": "^8.57.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jscodeshift": "^0.16.1",
"prettier": "^3.3.3",
"publint": "^0.2.9",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
}
}