-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "@hypothesis/frontend-testing",
"version": "1.5.0",
"description": "Frontend testing utilities for Hypothesis projects",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/hypothesis/frontend-testing",
"author": "Hypothesis Developers <[email protected]>",
"license": "BSD-2-Clause",
"packageManager": "[email protected]",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"axe-core": "^4.8.2",
"enzyme": "^3.11.0",
"preact": "^10.18.1"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"importOrder": [
"^[./]"
],
"importOrderSeparation": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
},
"scripts": {
"build": "tsc",
"checkformatting": "prettier --check src/**/*.ts",
"format": "prettier --list-different -w src/**/*.ts"
}
}