-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
65 lines (65 loc) · 2.29 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
{
"name": "ngx-material-keyboard-src",
"version": "0.1.1",
"description": "Onscreen virtual keyboard for Angular ≥ 5 (https://angular.io/) using Material 2 (https://material.angular.io/).",
"repository": {
"type": "git",
"url": "git+https://github.com/ngx-material-keyboard/core.git"
},
"author": "David Enke <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngx-material-keyboard/core/issues"
},
"homepage": "https://github.com/ngx-material-keyboard/core",
"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 --locale=de --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/animations": "5.2.5",
"@angular/cdk": "5.2.2",
"@angular/common": "5.2.5",
"@angular/compiler": "5.2.5",
"@angular/core": "5.2.5",
"@angular/forms": "5.2.5",
"@angular/http": "5.2.5",
"@angular/material": "5.2.2",
"@angular/platform-browser": "5.2.5",
"@angular/platform-browser-dynamic": "5.2.5",
"@angular/router": "5.2.5",
"classlist.js": "1.1.20150312",
"core-js": "2.5.3",
"hammerjs": "2.0.8",
"reset-css": "2.2.1",
"rxjs": "5.5.6",
"web-animations-js": "2.3.1",
"zone.js": "0.8.20"
},
"devDependencies": {
"@angular/cli": "1.7.0",
"@angular/compiler-cli": "5.2.5",
"@angular/language-service": "5.2.5",
"@compodoc/compodoc": "1.1.5",
"@types/jasmine": "2.8.6",
"@types/node": "9.4.6",
"codelyzer": "4.1.0",
"cpx": "1.5.0",
"ng-packagr": "2.1.0",
"rxjs-tslint-rules": "3.14.0",
"sass-lint": "1.12.1",
"ts-node": "5.0.0",
"tslint": "5.9.1",
"typescript": "2.6.2"
}
}