forked from timdeschryver/eslint-plugin-ngrx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 2.01 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
{
"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": "index.js",
"schematics": "./schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"scripts": {
"test": "jest",
"test:config": "npm run g:config && npm run test",
"test:cov": "jest --coverage",
"prebuild": "rimraf ./dist",
"build": "tsc",
"postbuild": "cpy ./{package.json,README.md} ./dist",
"lint": "eslint --ext .ts ./src/** ./tests/**",
"g:config": "ts-node ./scripts/generate-config.ts",
"g:readme": "ts-node ./scripts/generate-readme.ts",
"g:all": "npm run g:config && npm run g:readme",
"pre-commit": "npm run g:all && git add ./src/configs/**.ts && git add ./README.md && lint-staged"
},
"dependencies": {
"@angular-devkit/schematics": "^11.0.1",
"@typescript-eslint/experimental-utils": "^4.7.0",
"eslint-plugin-rxjs": "^2.1.4",
"tslib": "^2.2.0",
"tsutils-etc": "^1.3.1"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/eslint": "^7.2.4",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"common-tags": "^1.8.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-etc": "^4.0.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}