-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@travelperksl/fabricator",
"version": "7.0.1",
"description": "Fabricate objects for your tests",
"keywords": [
"fabricator",
"fabrication",
"fabricate",
"testing"
],
"homepage": "https://github.com/travelperk/fabricator#readme",
"bugs": {
"url": "https://github.com/travelperk/fabricator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/travelperk/fabricator.git"
},
"main": "dist/fabricator.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src -d dist --ignore '**/*.test.ts' --extensions .ts ",
"clean": "rm -rf dist",
"extract-types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"lint-staged": "lint-staged",
"prepare": "husky install",
"prettier": "prettier",
"pretty-quick": "pretty-quick",
"test": "jest --coverage",
"test:ci": "jest --coverage --ci",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"lint-staged": {
"*.{ts,js}": "eslint --max-warnings=0 --ignore-pattern '!.prettierrc.js'",
"package.json": "sort-package-json"
},
"jest": {
"roots": [
"src"
]
},
"dependencies": {
"sort-package-json": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0 ",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"typescript": "4.9.3"
}
}