-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 2.37 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "efate",
"description": "A typesafe fixture builder.",
"private": true,
"keywords": [
"testing",
"fixtures",
"mocks",
"stubs",
"typescript",
"fixture builder",
"fixture generator"
],
"scripts": {
"bootstrap": "lerna exec npm install",
"compile": "lerna run compile --sort",
"test": "lerna run test --parallel",
"lint": "eslint packages/**/*.ts",
"lint:fix": "eslint packages/**/*.ts --fix",
"clean": "lerna run clean --parallel",
"prettier": "prettier --write packages/**/*"
},
"author": {
"name": "John Teague",
"url": "https://github.com/jcteague"
},
"license": "MIT",
"repository": "jcteague/efate",
"sideEffects": false,
"engines": {
"node": ">=12"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"efate": "file:packages/efate",
"efate-uuid": "file:packages/efate-uuid"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/lodash.mergewith": "^4.6.9",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chai": "^4.1.2",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^0.14.3",
"lerna": "^6.1.0",
"lint-staged": "^15.2.5",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^2.6.1",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.9",
"ts-node": "^10.7.0",
"type-fest": "3.3",
"typescript": "^4.7.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"bracketSpacing": true
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"simple-import-sort"
],
"extends": [
"prettier",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"rules": {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error"
},
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.json"
}
},
"eslintIgnore": [
"**/dist/**",
"**/node_modules/**"
]
}