This repository was archived by the owner on Oct 18, 2022. It is now read-only.
forked from jskrzypek/angular2-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.68 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.68 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "angular2-grid",
"version": "0.11.2",
"description": "A grid-based drag/drop/resize directive plugin for Angular 2",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"ngc": "ngc",
"start": "npm run lite",
"lite": "lite-server -c bs-config.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/BTMorton/angular2-grid.git"
},
"keywords": [
"angular",
"angular2",
"grid",
"web-components"
],
"author": "Ben Morton <ben.morton91@gmail.com> (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/main*",
"dist/components/*",
"dist/directives/*",
"dist/interfaces/*",
"dist/modules/*"
],
"peerDependencies": {
"@angular/core": "2.1.1"
},
"devDependencies": {
"@angular/common": "2.1.1",
"@angular/compiler": "2.1.1",
"@angular/compiler-cli": "2.1.1",
"@angular/core": "2.1.1",
"@angular/forms": "2.1.1",
"@angular/platform-browser": "2.1.1",
"@angular/platform-browser-dynamic": "2.1.1",
"@types/core-js": "^0.9.35",
"@types/jasmine": "^2.5.38",
"@types/node": "0.0.2",
"bower": "^1.7.9",
"core-js": "^2.4.1",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-symlink": "^2.1.4",
"gulp-typescript": "^3.1.3",
"gulp-uglify": "^1.5.3",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"lite-server": "^2.2.2",
"merge2": "^1.0.2",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "0.1.3",
"run-sequence": "^1.2.1",
"rxjs": "5.0.0-beta.12",
"systemjs": "^0.19.29",
"typescript": "~2.0.10",
"typings": "^1.3.1",
"zone.js": "^0.6.21"
}
}