Uh oh!
There was an error while loading. Please reload this page.
forked from briebug/angular-datatable
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
48 lines (48 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "angular-datatable",
"version": "2.1.2",
"description": "An Angular 2 datatable, 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://git@github.com/briebugconsulting/angular-datatable.git"
},
"peerDependencies": {
"@angular/core": "^2.3.1"
},
"author": "BrieBug Developers <developers@briebug.com>",
"license": "MIT",
"devDependencies": {
"@angular/common": "^2.3.1",
"@angular/core": "^2.3.1",
"@angular/forms": "^2.3.1",
"cz-conventional-changelog": "1.2.0",
"rxjs": "^5.0.1",
"typescript": "~2.0.3",
"validate-commit-msg": "2.8.2"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}