-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 3.33 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
{
"//": "Licensed to the Apache Software Foundation (ASF) under one or more",
"//": "contributor license agreements. See the NOTICE file distributed with",
"//": "this work for additional information regarding copyright ownership.",
"//": "The ASF licenses this file to You under the Apache License, Version 2.0",
"//": "(the \"License\"); you may not use this file except in compliance with",
"//": "the License. You may obtain a copy of the License at",
"//": "",
"//": "http://www.apache.org/licenses/LICENSE-2.0",
"//": "",
"//": "Unless required by applicable law or agreed to in writing, software",
"//": "distributed under the License is distributed on an \"AS IS\" BASIS,",
"//": "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.",
"//": "See the License for the specific language governing permissions and",
"//": "limitations under the License.",
"name": "ngx-seed",
"version": "0.0.0",
"scripts": {
"start": "./node_modules/http-server/bin/http-server .",
"build:app": "./node_modules/grunt-cli/bin/grunt compile-web-ui-styles",
"bundle:app": "./node_modules/grunt-cli/bin/grunt bundle-web-ui",
"clean:install": "bash ./scripts/clean-install",
"clean:install:skipTests": "bash ./scripts/clean-install-skipTests",
"dev:install": "bash ./scripts/dev-install",
"dev:install:skipTests": "bash ./scripts/dev-install-skipTests",
"test": "./node_modules/protractor/bin/webdriver-manager update --gecko false && karma start karma.conf.js --single-run",
"test:dev": "./node_modules/protractor/bin/webdriver-manager update --gecko false && karma start karma.conf.js"
},
"description": "The ngx-seed web application.",
"keywords": [
"angular",
"material",
"material design",
"components",
"reusable",
"covalent"
],
"repository": {
"type": "git",
"url": "https://github.com/scottyaslan/ngx-seed.git"
},
"bugs": {
"url": "https://github.com/scottyaslan/ngx-seed/issues"
},
"license": "Apache License, Version 2.0",
"author": "Scott Aslan",
"contributors": [
"Scott Aslan <scottyaslan@gmail.com>"
],
"dependencies": {
"@angular/animations": "5.2.0",
"@angular/cdk": "5.2.0",
"@angular/common": "5.2.0",
"@angular/compiler": "5.2.0",
"@angular/core": "5.2.0",
"@angular/flex-layout": "5.0.0-beta.14",
"@angular/forms": "5.2.0",
"@angular/http": "5.2.0",
"@angular/material": "5.2.0",
"@angular/platform-browser": "5.2.0",
"@angular/platform-browser-dynamic": "5.2.0",
"@angular/router": "5.2.0",
"@covalent/core": "1.0.0",
"detect-libc": "^1.0.3",
"font-awesome": "4.7.0",
"hammerjs": "2.0.8",
"jquery": "3.2.1",
"roboto-fontface": "0.7.0",
"rxjs": "5.5.6",
"systemjs": "0.20.17",
"systemjs-plugin-text": "0.0.11",
"zone.js": "0.8.17"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-cli": "1.2.0",
"grunt-contrib-compress": "1.4.3",
"grunt-sass": "2.0.0",
"grunt-systemjs-builder": "1.0.0",
"http-server": "^0.11.1",
"jasmine-core": "2.8.0",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.1",
"karma-jasmine-html-reporter": "0.2.2",
"karma-spec-reporter": "0.0.31",
"load-grunt-tasks": "3.5.2",
"protractor": "4.0.14"
}
}