forked from InfomediaLtd/angular2-materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.86 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "angular2-materialize",
"description": "Angular 2 support for Materialize CSS framework",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"clean": "rimraf dist",
"dist": "gulp",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"deploy-app": "npm-run-all deploy-app:*",
"deploy-app:clean": "rm -rf dist/app",
"deploy-app:bundle": "jspm bundle-sfx app dist/app/index.js",
"deploy-app:copy-index": "cat index.html | tr '\n' ' ' | sed 's/<script.*<\\/script>//g' > dist/app/index.html",
"deploy-app:append-script": "echo \"<script src='index.js'></script>\" >> dist/app/index.html",
"deploy-app:copy-resources": "rsync -Ravz jspm_packages/npm/materialize-css@*/dist/fonts/ dist/app",
"deploy-app:deploy": "surge -p dist/app -d angular2-materialize.surge.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/InfomediaLtd/angular2-materialize.git"
},
"keywords": [
"angular",
"angular2",
"angular 2",
"materialize",
"materializecss",
"materialize-css",
"materialize css"
],
"author": "Ruby Boyarski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/InfomediaLtd/angular2-materialize/issues"
},
"homepage": "https://github.com/InfomediaLtd/angular2-materialize#readme",
"dependencies": {},
"devDependencies": {
"@angular/common": "^2.0.0-rc.1",
"@angular/compiler": "^2.0.0-rc.1",
"@angular/core": "^2.0.0-rc.1",
"@angular/platform-browser": "^2.0.0-rc.1",
"@angular/platform-browser-dynamic": "^2.0.0-rc.1",
"commitizen": "^2.4.6",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.5",
"es6-promise": "^3.1.2",
"es6-shim": "^0.35.0",
"expose-loader": "^0.7.1",
"file-loader": "^0.8.5",
"ghooks": "^1.0.1",
"gulp": "^3.9.0",
"gulp-rimraf": "^0.2.0",
"gulp-typescript": "^2.10.0",
"hammerjs": "^2.0.6",
"imports-loader": "^0.6.5",
"jquery": "^2.2.1",
"jspm": "0.16.34",
"materialize-css": "^0.97.5",
"npm-run-all": "^1.5.1",
"reflect-metadata": "0.1.2",
"rimraf": "^2.4.4",
"run-sequence": "^1.1.5",
"rxjs": "5.0.0-beta.6",
"semantic-release": "^4.3.5",
"style-loader": "^0.13.0",
"ts-loader": "^0.8.1",
"tsc": "^1.20150623.0",
"tsd": "^0.6.5",
"typescript": "^1.8.10",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"zone.js": "^0.6.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run dist"
}
},
"jspmNodeConversion": false,
"jspm": {
"dependencies": {},
"devDependencies": {
"@angular/common": "npm:@angular/common@^2.0.0-rc.1",
"@angular/compiler": "npm:@angular/compiler@^2.0.0-rc.1",
"@angular/core": "npm:@angular/core@^2.0.0-rc.1",
"@angular/platform-browser": "npm:@angular/platform-browser@^2.0.0-rc.1",
"@angular/platform-browser-dynamic": "npm:@angular/platform-browser-dynamic@^2.0.0-rc.1",
"@angular/router-deprecated": "npm:@angular/router-deprecated@^2.0.0-rc.1",
"clean-css": "npm:clean-css@^3.4.9",
"crypto": "github:jspm/nodelibs-crypto@^0.1.0",
"css": "github:systemjs/plugin-css@^0.1.20",
"jquery": "npm:jquery@^2.2.1",
"materialize": "npm:materialize-css@^0.97.5",
"reflect-metadata": "npm:reflect-metadata@^0.1.3",
"rxjs": "npm:[email protected]",
"typescript": "npm:typescript@^1.8.10",
"zone.js": "npm:zone.js@^0.6.4"
},
"overrides": {
"npm:[email protected]": {
"shim": {
"dist/js/materialize": {
"deps": [
"jquery",
"../css/materialize.css!"
],
"exports": "$"
}
},
"jspmNodeConversion": false
}
}
}
}