forked from l-lin/angular-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.88 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
{
"name": "angular-datatables",
"version": "14.0.0",
"description": "Angular directive for DataTables",
"scripts": {
"build": "npm run clean && npm run compile && npm run bundles && npm run schematics:build",
"clean": "rimraf -f index.{d.ts,js,js.map,metadata.json} src/*.{d.ts,js,map,metadata.json} bundles schematics/**/*.{d.ts,js,map}",
"compile": "npm run lint:code && ngc -p tsconfig-build.json",
"compile:tsc": "npm run lint && tsc -p tsconfig.json",
"bundles": "npm run rollup && npm run rollup:min",
"schematics:build": "tsc -p schematics/tsconfig.json",
"lint": "npm run lint:code && npm run lint:test",
"lint:code": "tslint ./src/**/*.ts -t verbose --exclude ./src/**/*.d.ts",
"lint:test": "tslint ./test/**/*.ts -t verbose --exclude ./test/**/*.d.ts",
"rollup": "rollup -c rollup.conf.js",
"rollup:min": "rollup -c rollup-uglify.conf.js",
"version": "npm run build && 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": "./schematics/src/collection.json",
"main": "bundles/angular-datatables.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"license": "MIT",
"peerDependencies": {},
"devDependencies": {
"@angular-devkit/core": "^14.0.3",
"@angular-devkit/schematics": "^14.0.3",
"@angular/cli": "^14.0.3",
"@angular/common": "^14.0.3",
"@angular/compiler": "^14.0.3",
"@angular/compiler-cli": "^14.0.3",
"@angular/core": "^14.0.3",
"@angular/platform-browser": "^14.0.3",
"@angular/platform-browser-dynamic": "^14.0.3",
"@types/datatables.net": "~1.10.21",
"@types/jasmine": "~3.10.2",
"@types/jquery": "~3.5.8",
"@types/node": "~16.11.7",
"canonical-path": "1.0.0",
"codelyzer": "^6.0.2",
"concat-cli": "~4.0.0",
"concurrently": "^6.4.0",
"core-js": "^3.19.1",
"datatables.net": "^1.11.3",
"jasmine-core": "~3.10.1",
"jquery": "^3.6.0",
"karma": "~6.3.8",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-htmlfile-reporter": "^0.3.8",
"karma-jasmine": "~4.0.1",
"protractor": "~7.0.0",
"rimraf": "~3.0.2",
"rollup": "~2.60.0",
"rollup-plugin-uglify": "^6.0.4",
"rxjs": "^7.4.0",
"tslint": "~6.1.0",
"typescript": "^4.7.4",
"zone.js": "~0.11.4"
},
"engines": {
"node": ">=8.9.0"
},
"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",
"dependencies": {
"codelyzer": "^6.0.2"
}
}