-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathpackage.json
38 lines (38 loc) · 898 Bytes
/
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
{
"name": "angular-2-data-table",
"version": "0.1.2",
"description": "An Angular 2 data table, with pagination, sorting, expandable rows etc.",
"keywords": [
"angular",
"angular2",
"Angular 2",
"ng2",
"datatable",
"data-table",
"data table",
"pagination"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/* && tsc",
"serve": "rm -rf dist/ && tsc -w",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://[email protected]/ggmod/angular-2-data-table.git"
},
"peerDependencies": {
"@angular/core": "^2.0.0"
},
"author": "ggmod <[email protected]>",
"license": "MIT",
"devDependencies": {
"@angular/common": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/forms": "^2.0.0",
"rxjs": "^5.0.0-beta.12",
"typescript": "^2.0.2"
}
}