forked from InfomediaLtd/angular2-materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.91 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.91 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
92
93
94
95
96
97
98
{
"name": "angular2-materialize",
"description": "Angular 2 support for Materialize CSS framework",
"version": "1.4.0",
"main": "src/index.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/github/Dogfalo/materialize@*/font/ 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 <rubyboy@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/InfomediaLtd/angular2-materialize/issues"
},
"homepage": "https://github.com/InfomediaLtd/angular2-materialize#readme",
"dependencies": {},
"devDependencies": {
"angular2": "^2.0.0-beta.3",
"commitizen": "^2.4.6",
"cz-conventional-changelog": "^1.1.5",
"es6-shim": "^0.33.3",
"ghooks": "^1.0.1",
"gulp": "^3.9.0",
"gulp-rimraf": "^0.2.0",
"gulp-typescript": "^2.10.0",
"jspm": "0.16.19",
"npm-run-all": "^1.5.1",
"reflect-metadata": "0.1.2",
"rimraf": "^2.4.4",
"run-sequence": "^1.1.5",
"semantic-release": "^4.3.5",
"tsc": "^1.20150623.0",
"tsd": "^0.6.5",
"typescript": "^1.7.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run dist"
}
},
"jspmNodeConversion": false,
"jspm": {
"dependencies": {
"angular2": "npm:angular2@^2.0.0-beta.3",
"materialize": "github:Dogfalo/materialize@^0.97.5",
"reflect-metadata": "npm:reflect-metadata@^0.1.3",
"rxjs": "npm:rxjs@^5.0.0-beta.0",
"zone.js": "npm:zone.js@^0.5.11"
},
"devDependencies": {
"clean-css": "npm:clean-css@^3.4.9",
"typescript": "npm:typescript@^1.7.5"
},
"overrides": {
"github:Dogfalo/materialize@0.97.5": {
"main": "js/materialize",
"shim": {
"js/materialize": {
"deps": [
"jquery",
"../css/materialize.css!"
],
"exports": "$"
}
},
"dependencies": {
"jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css"
}
}
}
}
}