-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.06 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": "@fluentui-react-native/codemods",
"version": "0.6.2",
"description": "Transform files to make refactoring FURN code easier",
"homepage": "https://github.com/microsoft/fluentui-react-native",
"license": "MIT",
"author": "Microsoft <fluentuinativeowners@microsoft.com>",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git",
"directory": "packages/codemods"
},
"bin": {
"transform": "./transform.js"
},
"main": "lib-commonjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib-commonjs/index.js",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "fluentui-scripts build",
"build-cjs": "tsgo --outDir lib-commonjs",
"build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler",
"clean": "fluentui-scripts clean",
"depcheck": "fluentui-scripts depcheck",
"lint": "fluentui-scripts lint",
"lint-package": "fluentui-scripts lint-package",
"format": "fluentui-scripts format",
"test": "fluentui-scripts jest"
},
"dependencies": {
"jscodeshift": "^17.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@babel/core": "catalog:",
"@babel/preset-env": "catalog:",
"@fluentui-react-native/kit-config": "workspace:*",
"@fluentui-react-native/lint-config-rules": "workspace:*",
"@fluentui-react-native/react-configs": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@fluentui-react-native/test-tools": "workspace:*",
"@types/jscodeshift": "^0.11.11",
"@types/node": "catalog:"
},
"furn": {
"depcheck": {
"ignoreMatches": [
".bin"
],
"ignorePatterns": [
"src/transforms/__testfixtures__/*"
]
}
},
"rnx-kit": {
"kitType": "library",
"extends": "@fluentui-react-native/kit-config",
"alignDeps": {
"capabilities": [
"tools-core",
"tools-jest-react"
]
}
}
}