-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
97 lines (97 loc) · 3.39 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
91
92
93
94
95
96
97
{
"name": "ng-sortgrid",
"version": "18.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"bump-version": "rjp package.json version $VERSION",
"copy:readme": "copyfiles ./README.md ./projects/ng-sortgrid",
"copy:styles": "copyfiles -f ./projects/ng-sortgrid/src/lib/ngsg.css ./dist/ng-sortgrid/styles",
"format:check": "prettier --list-different 'projects/**/*.ts'",
"format:write": "prettier --write 'projects/**/*.ts'",
"import-conductor": "import-conductor --source 'projects/**/*.ts'",
"test": "npm run test:lib",
"test:coverage": "ng test --code-coverage --watch=false",
"test:lib": "jest --config ./projects/ng-sortgrid/jest.config.js",
"test:lib:coverage": "jest --config ./projects/ng-sortgrid/jest.config.js --coverage",
"report-coverage:lib": "cat ./coverage/ng-sortgrid/lcov.info | codecov",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "npm run copy:readme && ng build ng-sortgrid && npm run copy:styles",
"build:demo": "ng build ng-sortgrid-demo --base-href='https://kreuzerk.github.io/ng-sortgrid/'",
"publish": "npm run publish:lib",
"publish:demo": "npx angular-cli-ghpages --dir=./dist/ng-sortgrid-demo",
"publish:lib": "cd dist/ng-sortgrid && npx semantic-release",
"lint": "eslint projects/**/*.ts"
},
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/cli": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.5",
"@angular-eslint/builder": "^18.0.1",
"@angular-eslint/eslint-plugin": "^18.0.1",
"@angular-eslint/eslint-plugin-template": "^18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular-eslint/template-parser": "^18.0.1",
"@angular/compiler-cli": "^18.0.0",
"@angular/language-service": "^18.0.0",
"@fortawesome/fontawesome-free": "^6.5.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"codecov": "^3.8.2",
"codelyzer": "^6.0.2",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"husky": "^4.2.5",
"import-conductor": "^2.6.1",
"jest": "^29.7.0",
"jest-preset-angular": "^14.0.3",
"lint-staged": "^15.2.7",
"ng-packagr": "^18.0.0",
"prettier": "^3.2.5",
"protractor": "~7.0.0",
"replace-json-property": "^1.9.0",
"ts-jest": "^29.1.2",
"ts-node": "~10.9.2",
"tslint": "~6.1.0",
"typescript": "^5.4.2"
},
"private": true,
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,__mocks__,bin}/**/*.ts": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/kreuzerk/ng-sortgrid.git"
},
"bugs": {
"url": "https://github.com/kreuzerk/ng-sortgrid/issues"
},
"homepage": "https://github.com/kreuzerk/ng-sortgrid#readme"
}