This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
executable file
·90 lines (90 loc) · 2.73 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
{
"name": "eslint-plugin-ngrx",
"version": "0.0.0-development",
"description": "ESLint plugin for NgRx",
"keywords": [
"NgRx",
"eslint",
"eslint-plugin"
],
"author": "Tim Deschryver",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timdeschryver/eslint-plugin-ngrx.git"
},
"bugs": {
"url": "https://github.com/timdeschryver/eslint-plugin-ngrx/issues"
},
"homepage": "https://github.com/timdeschryver/eslint-plugin-ngrx#readme",
"private": false,
"main": "./dist/index.js",
"schematics": "./dist/schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"ng-update": {
"migrations": "./dist/schematics/migrations/migration.json"
},
"files": [
"dist",
"README.md",
"package.json",
"LICENSE"
],
"scripts": {
"test": "uvu -r ts-node/register tests",
"test:cov": "c8 --check-coverage npm test",
"test:one": "node -r ts-node/register",
"test:config": "npm run g:config && npm run test",
"prebuild": "rimraf ./dist",
"build": "tsc",
"postbuild": "npm run copy:schematics",
"copy:schematics": "cpy ./schematics/**/*.json ../dist --cwd=src --parents",
"lint:all": "eslint ./scripts/**/*.ts ./src/**/*.ts ./tests/**/*.ts --fix",
"prettier:all": "prettier --write .",
"g:config": "ts-node ./scripts/generate-config.ts",
"g:readme": "ts-node ./scripts/generate-readme.ts",
"g:docs": "ts-node ./scripts/generate-docs.ts",
"g:all": "npm run g:config && npm run g:readme && npm run g:docs",
"pre-commit": "npm run g:all && git add ./src/configs/**.ts && git add ./README.md && lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@angular-devkit/schematics": "^13.0.3",
"@typescript-eslint/experimental-utils": "^5.4.0",
"eslint-etc": "^5.1.0",
"semver": "^7.3.5",
"strip-json-comments": "3.1.1"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"typescript": ">=4.3.5"
},
"devDependencies": {
"@ngrx/effects": "^13.0.1",
"@ngrx/store": "^13.0.1",
"@types/common-tags": "^1.8.1",
"@types/eslint": "^8.2.0",
"@types/node": "^16.11.9",
"@types/prettier": "^2.4.2",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"c8": "^7.10.0",
"common-tags": "^1.8.2",
"cpy-cli": "^3.1.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.3",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.4",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "4.4.4",
"uvu": "^0.5.2"
}
}