This repository has been archived by the owner on Feb 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpackage.json
90 lines (90 loc) · 3.31 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": "ngx-easy-table-demo",
"version": "1.0.0",
"description": "ngx-easy-table demo",
"typings": "index.ts",
"repository": "https://github.com/ssuperczynski/ngx-easy-table.git",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build demo --configuration=production",
"build-high-memory": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --configuration=production",
"lint": "ng lint",
"full-test": "npm run lint && npm run build:lib && npm run build && npm run cy:ci",
"e2e": "npm run cy:ci",
"cy:serve": "http-server dist/demo/browser -s -p 4202",
"cy:local": "ng serve --port=4202",
"cy:test": "cypress open",
"cy:open": "cypress open --e2e --browser chrome",
"cy:run": "cypress run --headless --browser chrome",
"cy:ci": "start-server-and-test cy:serve http://127.0.0.1:4202 cy:run",
"watch:table": "ng build ngx-easy-table --watch",
"publish:lib": "npm run build:lib && cd dist/ngx-easy-table && npm publish",
"publish:lib:next": "npm run build:lib && cd dist/ngx-easy-table && npm publish --tag next",
"build:lib": "ng build ngx-easy-table && sass projects/ngx-easy-table/assets/style.scss dist/ngx-easy-table/style.css && cp projects/ngx-easy-table/assets/style.scss dist/ngx-easy-table/style.scss",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/material": "^18.2.0",
"ngx-easy-table": "^15.7.0",
"ngx-highlightjs": "^12.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.0",
"@angular-devkit/core": "^18.2.0",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cdk": "^18.2.0",
"@angular/cli": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/language-service": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@types/node": "^20.16.1",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@typescript-eslint/types": "^8.2.0",
"bootstrap": "^5.3.3",
"cypress": "^13.13.3",
"eslint": "^9.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-unicorn": "^55.0.0",
"http-server": "^14.1.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"ng-packagr": "^18.2.1",
"prettier": "3.3.3",
"rxjs": "^7.8.1",
"sass": "^1.77.1",
"start-server-and-test": "^2.0.5",
"ts-node": "^10.9.2",
"tslib": "^2.5.3",
"typescript": "~5.5.4",
"zone.js": "~0.14.10"
},
"bugs": {
"url": "https://github.com/ssuperczynski/ngx-easy-table/issues"
},
"homepage": "https://github.com/ssuperczynski/ngx-easy-table",
"main": "main.js",
"keywords": [
"angular",
"table",
"angular table",
"angular-table",
"ngx-easy-table"
],
"author": "Sebastian Superczynski <s.superczynski@gmail.com>"
}