forked from l-lin/angular-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
{
"name": "angular-datatables",
"version": "4.0.1-dev",
"description": "Angular directive for DataTables",
"scripts": {
"build": "npm run clean && npm run compile && npm run bundles",
"clean": "rimraf -f index.{d.ts,js,js.map,metadata.json} src/*.{d.ts,js,map,metadata.json} bundles",
"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",
"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"
},
"keywords": [
"Angular",
"2",
"DataTables"
],
"author": "Louis LIN <[email protected]> (https://l-lin.github.io/)",
"contributors": [
"Michael Bennett <[email protected]>",
"Steven Masala <[email protected]>"
],
"main": "bundles/angular-datatables.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"license": "MIT",
"dependencies": {
"@angular/common": "~4.0.0",
"@angular/compiler": "~4.0.0",
"@angular/core": "~4.0.0",
"@angular/platform-browser": "~4.0.0",
"@angular/platform-browser-dynamic": "~4.0.0",
"core-js": "~2.4.1",
"datatables.net": "~1.10.13",
"jquery": "~3.1.1",
"rxjs": "~5.3.0",
"zone.js": "~0.8.8"
},
"devDependencies": {
"@angular/compiler-cli": "~4.0.0",
"@types/datatables.net": "1.10.1",
"@types/jasmine": "2.5.40",
"@types/jquery": "2.0.41",
"@types/node": "6.0.70",
"canonical-path": "0.0.2",
"codelyzer": "~2.0.1",
"concat-cli": "4.0.0",
"concurrently": "~2.2.0",
"http-server": "~0.9.0",
"jasmine-core": "~2.4.1",
"karma": "~1.2.0",
"karma-chrome-launcher": "~0.2.3",
"karma-cli": "~0.1.2",
"karma-htmlfile-reporter": "~0.2.2",
"karma-jasmine": "~0.3.8",
"protractor": "~5.1.1",
"rimraf": "~2.6.1",
"rollup": "~0.41.6",
"rollup-plugin-uglify": "~1.0.2",
"systemjs": "0.20.12",
"tslint": "~4.5.1",
"typescript": "~2.2.2"
},
"engines": {
"node": ">=6.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"
}