forked from akozyritskiy/ng2-datatable-bootstrap4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.85 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
{
"name": "ng2-datatable-bootstrap4",
"version": "2.3.5",
"description": "An Angular 2 datatable, with pagination, sorting, expandable rows etc.",
"main": "dist/bundles/angular-datatable.umd.js",
"module": "dist/index.js",
"keywords": [
"angular",
"angular2",
"Angular 2",
"ng2",
"datatable",
"data-table",
"data table",
"pagination"
],
"scripts": {
"cleanup": "rimraf dist/bundles dist/src dist/index.d.ts dist/index.metadata.json dist/index.js dist/index.js.map dist/LICENSE dist/README.md",
"bundling": "rollup -c",
"minify": "uglifyjs dist/bundles/angular-datatable.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/angular-datatable.umd.min.js",
"copy": "copyfiles LICENSE README.md dist",
"build": "npm run cleanup && ngc && npm run bundling && npm run minify && npm run copy",
"build-only": "npm run cleanup && ngc",
"publish-to-npm": "cd dist && npm publish",
"link": "cd dist && npm link && cd .."
},
"repository": {
"type": "git",
"url": "git://[email protected]/akozyritskiy/ng2-datatable-bootstrap4.git"
},
"author": "Anton Kozyritskiy <[email protected]>",
"license": "MIT",
"dependencies": {
"@angular/common": "^4.1.3",
"@angular/core": "^4.1.3",
"@angular/forms": "^4.1.3",
"reflect-metadata": "^0.1.9",
"rxjs": "^5.0.3",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/compiler": "^4.1.3",
"@angular/compiler-cli": "^4.1.3",
"copyfiles": "^1.2.0",
"cz-conventional-changelog": "1.2.0",
"rimraf": "^2.6.1",
"rollup": "^0.37.0",
"typescript": "~2.2.1",
"uglify-js": "^2.7.5",
"validate-commit-msg": "2.8.2"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}