forked from Iris0905/angular-onscreen-material-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.05 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
{
"name": "angular-onscreen-material-keyboard",
"version": "0.4.0",
"description": "This package is forked from ngx-material-keyboard with bug fixes and additional features.",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-onscreen-material-keyboard.git"
},
"author": "Iris X, Daniel M, Kenneth A",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular-onscreen-material-keyboard/issues"
},
"homepage": "https://github.com/angular-onscreen-material-keyboard",
"scripts": {
"ng": "ng",
"start": "npm run start:demo",
"start:demo": "ng serve --host 0.0.0.0 --disable-host-check",
"build": "npm run build:core && npm run build:demo && npm run build:docs",
"build:core": "ng-packagr -p ./src/core/package.json && cpx -p README.md dist/core",
"build:demo": "ng build --prod --progress=false --base-href=/demo/",
"build:docs": "compodoc ./src/core -p ./tsconfig.json --silent --disableCoverage --disablePrivateOrInternalSupport --theme readthedocs --output ./dist/docs",
"test": "ng test",
"lint": "npm run lint:ts && npm run lint:sass",
"lint:ts": "ng lint --type-check=true",
"lint:sass": "sass-lint --verbose --no-exit --config ./.sass-lint.yml",
"postinstall": "npm rebuild node-sass"
},
"dependencies": {
"@angular-devkit/architect": "^0.900.2",
"@angular-devkit/build-optimizer": "^0.900.2",
"@angular-devkit/build-webpack": "^0.900.2",
"@angular-devkit/core": "^9.0.2",
"@angular-devkit/schematics": "^9.0.2",
"@angular/animations": "^9.0.1",
"@angular/cdk": "^9.0.0",
"@angular/common": "^9.0.1",
"@angular/compiler": "^9.0.1",
"@angular/core": "^9.0.1",
"@angular/forms": "^9.0.1",
"@angular/material": "^9.0.0",
"@angular/platform-browser": "^9.0.1",
"@angular/platform-browser-dynamic": "^9.0.1",
"@ngtools/webpack": "^9.0.2",
"@schematics/angular": "^9.0.2",
"@schematics/update": "^0.900.2",
"classlist.js": "1.1.20150312",
"core-js": "^3.6.4",
"hammerjs": "^2.0.8",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.5.2",
"karma-webpack": "^4.0.2",
"node": "^13.8.0",
"reset-css": "^5.0.1",
"rxjs": "^6.5.4",
"tslib": "^1.10.0",
"web-animations-js": "^2.3.2",
"webpack": "^4.41.6",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.900.2",
"@angular/cli": "9.0.2",
"@angular/compiler-cli": "9.0.1",
"@angular/language-service": "9.0.1",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "3.5.3",
"@types/node": "13.7.1",
"codelyzer": "^5.2.1",
"cpx": "1.5.0",
"ng-packagr": "^9.0.0",
"rxjs-tslint-rules": "4.28.3",
"sass-lint": "1.13.1",
"ts-node": "8.6.2",
"tsickle": "^0.38.0",
"tslint": "6.0.0",
"typescript": "^3.7.5"
},
"keywords": [
"angular",
"angular8",
"material",
"keyboard",
"onscreen",
"typescript",
"ngx"
]
}