-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
132 lines (132 loc) · 3.15 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"version": "1.5.0",
"name": "class-fixtures-factory",
"author": "CyriacBr",
"license": "MIT",
"keywords": [
"typescript",
"class",
"fixture",
"factory",
"generator",
"entity",
"fixtures"
],
"repository": {
"type": "git",
"url": "https://github.com/CyriacBr/class-fixtures-factory.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "cyriacbr-tsdx watch",
"build": "cyriacbr-tsdx build",
"test": "cyriacbr-tsdx test",
"lint": "cyriacbr-tsdx lint",
"release:first": "standard-version --first-release",
"release": "standard-version",
"release:publish": "git push --follow-tags origin develop && yarn publish",
"prepublish": "yarn build && pkg-ok",
"docs:api": "api-extractor run --local --verbose && cd docs && api-documenter markdown"
},
"peerDependencies": {
"class-validator": "0.11.1"
},
"module": "dist/class-fixtures-factory.esm.js",
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@cyriacbr/tsdx": "^0.12.35",
"@microsoft/api-documenter": "^7.7.14",
"@microsoft/api-extractor": "^7.7.10",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"chalk": "^3.0.0",
"class-validator": "0.11.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jest-formatting": "^1.2.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest-tap-reporter": "^1.9.0",
"lint-staged": "^10.0.8",
"pkg-ok": "^2.3.1",
"prettier": "^1.19.1",
"standard-version": "8.0.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/faker": "^4.1.10",
"@types/treeify": "^1.0.0",
"faker": "^4.1.0",
"tinspector": "^2.3.1",
"treeify": "^1.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "git diff HEAD --quiet && yarn run test"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true,
"jest/globals": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:jest-formatting/recommended"
],
"ignorePatterns": [
"node_modules/"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"jest"
],
"rules": {
"no-unused-vars": "off"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}