-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
76 lines (76 loc) · 1.97 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
68
69
70
71
72
73
74
75
76
{
"name": "fishery",
"version": "2.2.2",
"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/fishery.js",
"module": "dist/fishery.mjs",
"unpkg": "dist/fishery.umd.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"tsd": {
"directory": "lib/__tests__/types"
},
"scripts": {
"build": "rm -rf dist && rollup -c",
"test": "jest",
"test:all": "yarn test && yarn test:types && yarn pretty:check",
"test:types": "mkdir -p dist && touch dist/index.d.ts && yarn tsd",
"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": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "^26.0.20",
"@types/lodash.mergewith": "^4.6.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.60.1",
"rollup-plugin-typescript2": "^0.31.0",
"ts-jest": "^26.4.4",
"tsd": "^0.17.0",
"tslib": "^2.3.1",
"typescript": "^3.9.5"
},
"dependencies": {
"lodash.mergewith": "^4.6.2"
}
}