forked from BTMorton/angular2-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.12 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
{
"name": "angular2-grid",
"private": true,
"description": "A grid-based drag/drop/resize directive plugin for Angular 2",
"scripts": {
"cleanup": "rimraf dist/bundles dist/components dist/directives dist/interfaces dist/modules dist/main.d.ts dist/main.metadata.json dist/main.js dist/main.js.map dist/LICENSE dist/README.md",
"bundling": "rollup -c",
"minify": "uglifyjs dist/bundles/NgGrid.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/NgGrid.umd.min.js",
"copy": "copyfiles -f LICENSE README.md src/*.css dist",
"build": "npm run cleanup && ngc && npm run bundling && npm run minify && npm run copy"
},
"repository": {
"type": "git",
"url": "https://github.com/BTMorton/angular2-grid.git"
},
"keywords": [
"angular",
"angular2",
"grid",
"web-components"
],
"author": "Ben Morton <[email protected]> (http://bmorton.co.uk/)",
"contributors": [
"Martin Sikora (https://github.com/martinsik)",
"Daniel Pastor de la Fuenta (https://github.com/aebsubis)",
"Frederik Schubert (https://github.com/frederikschubert)",
"Matthew de Nobrega (https://github.com/matthewdenobrega)",
"Alex (https://github.com/lifecoderua)",
"pocmanu (https://github.com/pocmanu)",
"Chris Morabito (https://github.com/morabitowoolpert)",
"Carlos Esteban Lopez Jaramillo (https://github.com/Luchillo)",
"Niklas Berg (https://github.com/nkholski)",
"Wouter (https://github.com/wuhkuh)",
"Brian Ellis (https://github.com/OnlyAGhost)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BTMorton/angular2-grid/issues"
},
"homepage": "https://github.com/BTMorton/angular2-grid",
"files": [
"dist/NgGrid*",
"dist/js/",
"dist/bundles/",
"dist/aot/",
"dist/typings/"
],
"devDependencies": {
"@angular/core": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@angular/compiler-cli": "^2.4.0",
"copyfiles": "^1.0.0",
"reflect-metadata": "^0.1.8",
"rimraf": "^2.5.4",
"rollup": "^0.37.0",
"rxjs": "^5.0.1",
"typescript": "~2.0.10",
"uglify-js": "^2.7.5",
"zone.js": "^0.7.2"
}
}