forked from ssuperczynski/ngx-easy-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.44 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
98
{
"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 -p 4202",
"cy:local": "ng serve --port=4202",
"cy:test": "cypress open",
"cy:open": "cypress open",
"cy:run": "cypress run --headless --browser chrome",
"cy:ci": "start-server-and-test cy:serve http://localhost: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"
},
"license": "MIT",
"dependencies": {
"@angular/animations": "^13.0.2",
"@angular/forms": "^13.0.2",
"@angular/material": "^13.0.2",
"export-to-csv": "^0.2.1",
"ngx-easy-table": "^15.1.0",
"ngx-highlightjs": "^6.1.0",
"spectre.css": "^0.5.9"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.0.3",
"@angular-devkit/core": "^13.0.3",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cdk": "^13.0.2",
"@angular/cli": "^13.0.3",
"@angular/common": "^13.0.2",
"@angular/compiler": "^13.0.2",
"@angular/compiler-cli": "^13.0.2",
"@angular/core": "^13.0.2",
"@angular/language-service": "^13.0.2",
"@angular/platform-browser": "^13.0.2",
"@angular/platform-browser-dynamic": "^13.0.2",
"@angular/router": "^13.0.2",
"@types/node": "^14.17.34",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"bootstrap": "^4.6.0",
"cypress": "^9.4.1",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-rxjs": "latest",
"eslint-plugin-sonarjs": "^0.10.0",
"http-server": "^14.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"ng-packagr": "^13.0.6",
"prettier": "^2.4.1",
"rxjs": "^7.4.0",
"sass": "^1.43.4",
"start-server-and-test": "^1.14.0",
"ts-node": "^9.1.1",
"tslib": "^2.3.1",
"tsutils": "^3.21.0",
"typescript": "~4.4.4",
"zone.js": "~0.11.4"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"engineStrict": true,
"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>"
}