-
Notifications
You must be signed in to change notification settings - Fork 488
/
package.json
100 lines (100 loc) · 3.63 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
99
100
{
"name": "angular-datatables-workspace",
"version": "18.0.0",
"description": "Angular directive for DataTables",
"scripts": {
"start": "npm run link:lib && ng serve",
"build:lib": "npm run clean && ng build angular-datatables --configuration=production && npm run lib:schematics:build",
"clean": "rimraf -f lib/**/index.{d.ts,js,js.map,metadata.json} demo/**/*.{d.ts,js,map,metadata.json} schematics/**/*.{d.ts,js,map}",
"link:lib": "rimraf node_modules/angular-datatables && npm run build:lib && linklocal",
"demo:test": "ng test",
"demo:test-ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
"lib:schematics:build": "rimraf dist/lib/schematics && tsc -p lib/schematics/tsconfig.json && copyfiles lib/schematics/{src/collection.json,src/ng-add/schema.json} dist",
"demo:build:prod": "npm run clean && ng build angular-datatables-demo --configuration production --base-href=/angular-datatables/",
"version": "npm run build:lib && git add -A",
"postversion": "git push && git push --tags"
},
"keywords": [
"Angular",
"DataTables"
],
"author": "Louis LIN <[email protected]> (https://l-lin.github.io/)",
"contributors": [
"Michael Bennett <[email protected]>",
"Steven Masala <[email protected]>",
"Surya Teja K <[email protected]>"
],
"schematics": "./lib/schematics/src/collection.json",
"main": "index.js",
"module": "index.js",
"typings": "index.d.ts",
"license": "MIT",
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.6",
"@angular-devkit/schematics": "^18.0.6",
"@angular/cli": "^18.0.6",
"@angular/compiler-cli": "^18.0.5",
"@angular/language-service": "^18.0.5",
"@types/jasmine": "~5.1.0",
"@types/jquery": "^3.5.29",
"@types/node": "^20.11.16",
"copyfiles": "^2.4.1",
"jasmine-core": "~5.1.0",
"jasmine-spec-reporter": "~7.0.0",
"jquery": "^3.6.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"linklocal": "^2.8.2",
"ng-packagr": "^18.0.0",
"ngx-markdown": "^18.0.0",
"rimraf": "~3.0.2",
"typescript": "~5.4.2"
},
"dependencies": {
"@angular/animations": "^18.0.5",
"@angular/common": "^18.0.5",
"@angular/compiler": "^18.0.5",
"@angular/core": "^18.0.5",
"@angular/forms": "^18.0.5",
"@angular/platform-browser": "^18.0.5",
"@angular/platform-browser-dynamic": "^18.0.5",
"@angular/router": "^18.0.5",
"angular-datatables": "file:dist/lib",
"clipboard": "^2.0.8",
"core-js": "^3.23.3",
"datatables.net": "^2.0.3",
"datatables.net-buttons": "^3.0.1",
"datatables.net-buttons-dt": "^3.0.1",
"datatables.net-colreorder": "^2.0.0",
"datatables.net-colreorder-dt": "^2.0.0",
"datatables.net-dt": "^2.0.3",
"datatables.net-fixedcolumns": "^4.3.1",
"datatables.net-fixedcolumns-dt": "^4.3.1",
"datatables.net-responsive": "^3.0.1",
"datatables.net-responsive-dt": "^3.0.1",
"datatables.net-select": "^2.0.0",
"datatables.net-select-dt": "^2.0.0",
"jquery": "^3.6.0",
"jszip": "^3.8.0",
"marked": "^9.1.6",
"materialize-css": "^0.100.2",
"prism-themes": "^1.9.0",
"prismjs": "^1.27.0",
"rxjs": "7.4.0",
"tether": "^2.0.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/l-lin/angular-datatables.git"
},
"bugs": {
"url": "https://github.com/l-lin/angular-datatables/issues"
},
"homepage": "https://github.com/l-lin/angular-datatables#readme"
}