generated from korniychuk/wallaby-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.2 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": "@z-brain/eslint-plugin-api-entity-ref",
"description": "An ESLint plugin to disable to check that you didn't forget to add ApiEntityRef decorator from @z-brain/api-entity-ref to your classes with ApiPropertyRef decorators.",
"author": "Anton Korniychuk <dev@korniychuk.pro>",
"license": "GPL-3.0",
"private": false,
"version": "1.0.4",
"bugs": {
"url": "https://github.com/z-brain/eslint-plugin-api-entity-ref/issues"
},
"homepage": "https://github.com/z-brain/eslint-plugin-api-entity-ref",
"repository": {
"type": "git",
"url": "git@github.com:z-brain/eslint-plugin-api-entity-ref.git"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.20.0"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:prod": "npm run build",
"lint": "eslint --ext .js,.ts ./{src,tests}/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"pre-push": "npm run lint && npm run test && npm run build:prod && npm run tpl-repo:check",
"preinstall": "node ./tools/check-yarn.js",
"test": "jest -c jest.config.js",
"test:watch": "npm run test -- --watch",
"tpl-repo": "tools/merge-with-repository-template.sh",
"tpl-repo:check": "npm run tpl-repo -- check",
"tpl-repo:merge": "npm run tpl-repo -- merge",
"gen-public-package.json": "tools/gen-public-package.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "~7.7.5",
"@babel/preset-env": "~7.7.6",
"@babel/preset-typescript": "~7.7.4",
"@types/jest": "~25.1.0",
"@types/node": "~12.12.30",
"@typescript-eslint/eslint-plugin": "~2.14.0",
"@typescript-eslint/parser": "~2.14.0",
"codecov": "~3.6.5",
"eslint": "~6.8.0",
"eslint-config-airbnb-base": "~14.0.0",
"eslint-import-resolver-typescript": "~2.0.0",
"eslint-plugin-filenames": "~1.3.2",
"eslint-plugin-import": "~2.19.1",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-unicorn": "~15.0.1",
"husky": "~3.1.0",
"jest": "~25.1.0",
"jest-extended": "~0.11.5",
"rimraf": "~3.0.0",
"typescript": "~3.7.5"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push",
"post-merge": "IS_YARN=true yarn install"
}
}
}