forked from khalid-folio3/angular-4-data-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
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
{
"name": "@rootedglobal/ngx-data-table",
"version": "1.0.0",
"description": "An Angular v2+ data table, with pagination, sorting, expandable rows etc.",
"keywords": [
"ngx",
"ng2",
"angular",
"angular4",
"Angular 4",
"Angular8",
"Angular 8",
"datatable",
"data-table",
"data table",
"pagination"
],
"license": "MIT",
"homepage": "https://github.com/rootedglobal/ngx-data-table#readme",
"author": "Narain Sagar <narainmenghwar@gmail.com> (http://narainsagar.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/rootedglobal/ngx-data-table.git"
},
"bugs": {
"url": "https://github.com/rootedglobal/ngx-data-table/issues"
},
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc"
},
"dependencies": {
"@angular/core": "~8.2.9",
"@angular/common": "~8.2.9",
"@angular/forms": "~8.2.9",
"@angular/platform-browser": "~8.2.9",
"rxjs": "~6.4.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular/compiler": "~8.2.9",
"@angular/compiler-cli": "~8.2.9",
"@types/node": "~8.9.4",
"ts-node": "~7.0.0",
"typescript": "~3.5.3"
}
}