forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "@fluentui/react-conformance",
"version": "0.19.2",
"description": "Customizable conformance testing utility for Fluent UI React components.",
"main": "lib-commonjs/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui"
},
"license": "MIT",
"beachball": {
"disallowedChangeTypes": [
"major",
"prerelease"
]
},
"devDependencies": {
"@fluentui/eslint-plugin": "*"
},
"dependencies": {
"lodash": "^4.17.15",
"chalk": "^2.4.2",
"react-docgen-typescript": "^2.1.0",
"react-is": "^17.0.2",
"@swc/helpers": "^0.5.1"
},
"peerDependencies": {
"@types/react": ">=16.8.0 <19.0.0",
"@types/react-dom": ">=16.8.0 <19.0.0",
"@testing-library/react": "^12.0.0",
"jest": "^26.0.0",
"react": ">=16.8.0 <19.0.0",
"react-dom": ">=16.8.0 <19.0.0",
"typescript": "^4.3.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./lib-commonjs/index.js",
"require": "./lib-commonjs/index.js"
},
"./package.json": "./package.json"
},
"files": [
"*.md",
"dist/*.d.ts",
"lib-commonjs"
]
}