forked from thoughtbot/fishery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "fishery",
"version": "1.4.0",
"description": "A library for setting up JavaScript factories to help build objects as test data, with full TypeScript support",
"keywords": [
"factories",
"testing",
"typescript",
"factory_bot",
"factorybot",
"mock",
"test data"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "jest",
"test:all": "yarn test && yarn pretty:check",
"testinit": "jest --init",
"pretty": "prettier --write '{*,.*,lib/**/*}.{ts,json,md}'",
"pretty:check": "prettier --check '{*,.*,lib/**/*}.{ts,json,md}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thoughtbot/fishery.git"
},
"author": "Stephen Hanson <[email protected]> (https://shanson.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thoughtbot/fishery/issues"
},
"homepage": "https://github.com/thoughtbot/fishery#readme",
"prettier": {
"arrowParens": "avoid",
"useTabs": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"semi": true,
"overrides": [
{
"files": "**/package.json",
"options": {
"parser": "json-stringify"
}
}
]
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash.mergewith": "^4.6.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^3.9.5"
},
"dependencies": {
"lodash.mergewith": "^4.6.2"
}
}