-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.38 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": "ng-ag-grid-schematics",
"version": "1.6.2",
"description": "Angular AG Grid Schematics",
"scripts": {
"build:watch": "tsc -p tsconfig.json --watch",
"build": "tsc -p tsconfig.json",
"commit": "git cz",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"markdownlint": "markdownlint **/*.md",
"prepare": "husky install",
"prettier:fix": "prettier --write .",
"prettier": "prettier --check .",
"test": "npm run build && jasmine src/**/*_spec.js"
},
"keywords": [
"ag-grid-integration",
"ag-grid",
"angular-cli",
"angular-component",
"angular-development",
"angular-schematics",
"angular",
"code-generation",
"component-generator",
"data-grid",
"frontend-development",
"schematics",
"typescript"
],
"author": "Sergii Grytsaienko",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^17.3.11",
"@angular-devkit/schematics": "^17.0.6"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "^5.1.4",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-yml": "^1.10.0",
"husky": "^8.0.3",
"jasmine": "^5.1.0",
"lint-staged": "^15.2.0",
"markdownlint": "^0.32.1",
"markdownlint-cli": "^0.38.0",
"prettier": "^3.1.1",
"semantic-release": "^22.0.12",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^35.0.0",
"stylelint-config-standard-scss": "^12.0.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/s-gryt/ng-ag-grid-schematics"
},
"bugs": {
"url": "https://github.com/s-gryt/ng-ag-grid-schematics/issues"
},
"docs": "https://github.com/s-gryt/ng-ag-grid-schematics/blob/main/README.md",
"homepage": "https://github.com/s-gryt/ng-ag-grid-schematics",
"contributors": [
{
"name": "Sergii Grytsaienko",
"email": "sergiigrytsaienko@gmail.com",
"url": "https://github.com/s-gryt"
}
]
}