forked from ariakit/ariakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "ariakit-test",
"version": "0.17.0-next.22",
"description": "Ariakit test utils",
"sideEffects": false,
"license": "MIT",
"homepage": "https://ariakit.org",
"main": "cjs/index.js",
"module": "esm/index.js",
"unpkg": "umd/ariakit-test.min.js",
"types": "ts/index.d.ts",
"publishConfig": {
"tag": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/ariakit/ariakit.git",
"directory": "packages/ariakit-test"
},
"author": {
"name": "Diego Haz",
"email": "[email protected]",
"url": "https://github.com/diegohaz"
},
"scripts": {
"test": "jest",
"lint": "eslint . --ext js,ts,tsx",
"build": "node ../../scripts/build",
"clean": "node ../../scripts/build/clean.js"
},
"keywords": [
"ariakit",
"react"
],
"dependencies": {
"ariakit-utils": "0.17.0-next.19"
},
"peerDependencies": {
"@testing-library/dom": "^8.0.0",
"@testing-library/react": "^12.0.0 || ^13.0.0 || ^13.0.0-alpha",
"react": "^17.0.0 || ^18.0.0"
}
}