-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.77 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-grid-component",
"version": "0.3.21",
"description": "angular 2 grid layout",
"main": "dist/bundles/ng2-grid.umd.js",
"module": "index.js",
"scripts": {
"start": "concurrently \"tsc -w\" \"lite-server\" \"gulp watch\" ",
"lite": "lite-server",
"tsc": "tsc",
"tsc:w": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "ngc -p tsconfig.aot.json",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ng2-grid.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ng2-grid.umd.min.js",
"aot": "rimraf dist && npm run transpile",
"compile": "gulp sass && gulp copy && gulp inline && npm run package && npm run minify",
"build":"npm run aot && npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/lunzhang/ng2-grid"
},
"keywords": [
"angular2",
"grid"
],
"author": "lunzhang",
"license": "MIT",
"homepage": "https://github.com/lunzhang/ng2-grid",
"files": [
"dist/*"
],
"devDependencies": {
"@angular/common": "~2.4.0",
"@angular/compiler": "^2.4.5",
"@angular/compiler-cli": "^2.4.5",
"@angular/core": "~2.4.0",
"@angular/platform-browser": "~2.4.0",
"@angular/platform-browser-dynamic": "~2.4.0",
"@types/node": "^7.0.4",
"concurrently": "^3.0.0",
"core-js": "^2.4.1",
"gulp": "^3.9.1",
"gulp-better-rollup": "^1.0.2",
"gulp-minify-css": "^1.2.4",
"gulp-sass": "^3.0.0",
"lite-server": "^2.2.2",
"reflect-metadata": "^0.1.8",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"run-sequence": "^1.2.2",
"rxjs": "5.0.1",
"systemjs": "0.19.40",
"typescript": "^2.1.5",
"uglify-js": "^2.7.5",
"zone.js": "^0.7.4"
},
"typings": "dist/main.d.ts"
}