-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "@cloudscape-design/jest-preset",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/cloudscape-design/jest-preset.git"
},
"homepage": "https://cloudscape.design",
"main": "./jest-preset.js",
"files": [
"*.js"
],
"scripts": {
"prebuild": "rm -rf lib && mkdir lib",
"build": "echo 'Nothing to build'",
"postbuild": "cp *.js README.md LICENSE package.json lib",
"lint": "eslint .",
"test": "tap",
"prepare": "husky install"
},
"peerDependencies": {
"babel-jest": ">=24",
"jest": ">=24"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^9.0.10",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"tap": "^19.2.2"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"tap": {
"coverage-report": [
"lcov",
"text",
"json"
]
}
}