-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
{
"version": "0.8.0",
"name": "angular4-material-table",
"description": "Angular 4 table based on @angular/cdk table structure, to allow row insertion, edition, validation and deletion.",
"keywords": [
"angular",
"angular4",
"table",
"inline validation",
"angular material table"
],
"scripts": {
"transpile": "ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/angular4-material-table.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/angular4-material-table.umd.min.js",
"build": "npm run transpile && npm run package && npm run minify"
},
"dependencies": {
"@angular/common": "^8.0.2",
"@angular/core": "^8.0.2",
"@angular/forms": "^8.0.2",
"@angular/cdk": "^8.0.1",
"core-js": "^2.5.7",
"rxjs": "^6.5.2",
"zone.js": "^0.9.1",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.800.3",
"@angular/cli": "^8.0.3",
"@angular/compiler": "^8.0.2",
"@angular/compiler-cli": "^8.0.2",
"@angular/language-service": "^8.0.2",
"@types/jasmine": "2.8.8",
"@types/node": "~10.14.9",
"codelyzer": "~4.5.0",
"rollup": "^0.60.2",
"ts-node": "~6.0.3",
"tslint": "~5.10.0",
"typescript": "~3.4.5",
"uglify-js": "^3.6.0"
},
"main": "bundles/angular4-material-table.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"author": "Ignacio Rossi <irossimoline>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/irossimoline/angular4-material-table.git"
},
"homepage": "https://github.com/irossimoline/angular4-material-table",
"bugs": {
"url": "https://github.com/irossimoline/angular4-material-table/issues"
}
}