-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ng2-branchy",
"version": "0.0.2-5-1",
"description": "angular2 component for visualizing data that can be naturally represented as a tree",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Georgii Rychko",
"email": "[email protected]"
},
"homepage": "https://github.com/rychkog/ng2-branchy",
"repository": {
"type": "git",
"url": "https://github.com/rychkog/ng2-branchy.git"
},
"bugs": {
"url": "https://github.com/rychkog/ng2-branchy/issues"
},
"keywords": [
"tree",
"ng2",
"angular2",
"ng2-tree",
"branch",
"tree-view",
"branchy"
],
"scripts": {
"prepublish": "typings install && npm run build:branchy",
"lint": "node_modules/.bin/tslint **/*.ts -e typings",
"clean": "rimraf build '{src,demo}/**/*.{d.ts,js.map,js,css}' 'index.{js,js.map,d.ts}'",
"dev": "npm run clean && npm run compile:styl && concurrently 'webpack-dev-server --inline --hot --colors --progress' 'npm run compile:styl:w'",
"compile:ts": "tsc",
"compile:styl": "gulp stylus",
"compile:styl:w": "gulp watch:stylus",
"build:branchy": "npm run compile:styl && npm run compile:ts",
"build:demo": "npm run clean && npm run compile:styl && webpack --progress --colors",
"deploy:demo": "npm run build:demo && gulp deploy"
},
"dependencies": {
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/platform-browser": "2.0.0-rc.4",
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
"es6-shim": "0.35.1",
"lodash": "4.13.1",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.31",
"zone.js": "0.6.12"
},
"devDependencies": {
"alertifyjs": "1.7.1",
"clean-webpack-plugin": "0.1.9",
"codelyzer": "0.0.23",
"concurrently": "2.1.0",
"css-loader": "0.23.1",
"file-loader": "0.9.0",
"gulp": "3.9.1",
"gulp-gh-pages": "0.5.4",
"gulp-gitignore": "0.1.0",
"gulp-stylus": "2.5.0",
"html-webpack-plugin": "2.21.0",
"raw-loader": "0.5.1",
"rimraf": "2.5.2",
"style-loader": "0.13.1",
"stylus": "0.54.5",
"to-string-loader": "1.1.4",
"ts-loader": "0.8.2",
"tslint": "3.11.0",
"typescript": "1.8.10",
"typings": "1.3.0",
"url-loader": "0.5.7",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
}
}