-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.26 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
{
"name": "@codeandpepper/janush",
"version": "1.1.6",
"description": "A blank schematics",
"repository": {
"type": "git",
"url": "https://github.com/codeandpepper/janush.git"
},
"engines": {
"node": "16.x.x",
"npm": "8.x.x"
},
"scripts": {
"prepare": "npm run build && husky install",
"build": "tsc && tsc-alias --silent",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "npm run build && jest --watch --no-cache",
"create": "npm run build && schematics .:application",
"format": "prettier --write \"**/*.{ts,tsx,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json}\"",
"lint": "eslint . --ext ts --ext tsx --ext js"
},
"keywords": [
"schematics"
],
"main": "cli/index.js",
"bin": {
"@codeandpepper/janush": "bin/janush",
"janush": "bin/janush"
},
"publishConfig": {
"access": "public"
},
"author": "",
"license": "MIT",
"schematics": "./schematics/collection.json",
"dependencies": {
"@angular-devkit/core": "^14.0.1",
"@angular-devkit/schematics": "^14.0.1",
"@angular-devkit/schematics-cli": "^14.0.1",
"@angular/cli": "^14.0.1",
"@schematics/angular": "^14.0.1",
"ansi-colors": "^4.1.3",
"arg": "^5.0.1",
"esm": "^3.2.25",
"lodash.isempty": "^4.4.0",
"lodash.mergewith": "^4.6.2",
"lodash.xor": "^4.5.0",
"prettier": "^2.6.2"
},
"devDependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.1",
"@types/jest": "^28.1.1",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.mergewith": "^4.6.6",
"@types/lodash.xor": "^4.5.6",
"@types/node": "^17.0.41",
"@types/prettier": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.1",
"ts-jest": "^28.0.4",
"tsc-alias": "^1.3.9",
"typescript": "^4.7.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run lint"
]
}
}