-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.48 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
{
"name": "materialize-angular",
"description": "Material UI Angular library",
"version": "0.7.10",
"author": "workylab",
"homepage": "https://materialize-angular.workylab.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/workylab/materialize-angular"
},
"bugs": {
"url": "https://github.com/workylab/materialize-angular/issues"
},
"keywords": [
"angular",
"angular-library",
"material-ui",
"material-design",
"angulario",
"scss-library",
"typescript-library",
"typescript",
"library"
],
"scripts": {
"ng": "ng",
"start": "webpack-dev-server --hot --progress",
"test:unit": "ng test --code-coverage",
"test:unit:coverage": "ng test --code-coverage --watch=false",
"test": "npm run test:unit:coverage",
"lint:scss": "stylelint './src/**/*.s?(a|c)ss'",
"lint:ts": "eslint './src/app/**/*.ts' --max-warnings=0",
"lint:ng": "ng lint",
"lint": "npm run lint:scss && npm run lint:ng && npm run lint:ts",
"build:scss": "cpx './src/styles/**/*' './dist/materialize-angular/styles' && scss-bundle",
"build:fonts": "cpx './src/fonts/**/*' './dist/materialize-angular/fonts'",
"build:licence": "cpx './LICENSE' './dist/materialize-angular'",
"build:readme": "cpx './README.md' './dist/materialize-angular'",
"build:library": "ng build materialize-angular",
"build:package": "npm run build && cd dist/materialize-angular && npm pack",
"build": "npm run build:library && npm run build:scss && npm run build:fonts && npm run build:licence && npm run build:readme",
"postinstall": "node scripts/postinstall || echo \"ignore\""
},
"private": false,
"dependencies": {
"@angular/animations": "^8.2.14",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"core-js": "^3.6.4",
"rxjs": "^6.5.4",
"typescript": "^3.5.3",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.23",
"@angular-devkit/build-ng-packagr": "^0.803.23",
"@angular/cli": "^8.3.23",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^8.2.14",
"@types/jasmine": "^3.4.6",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^2.18.0",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^5.2.1",
"codelyzer": "^5.1.2",
"cpx": "^1.5.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"file-loader": "^4.3.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.2.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.5.1",
"ng-packagr": "^5.7.1",
"protractor": "^5.4.3",
"scss-bundle": "^3.0.2",
"stylelint": "^10.1.0",
"stylelint-order": "^3.1.1",
"stylelint-webpack-plugin": "^0.10.5",
"to-string-loader": "^1.1.6",
"ts-node": "~8.3.0",
"tsickle": "^0.37.1",
"tslib": "^1.10.0",
"tslint": "~5.19.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-filter-warnings-plugin": "^1.2.1"
}
}