forked from ngx-material-keyboard/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.13 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
{
"name": "@ngx-material-keyboard/core",
"version": "0.0.2-SNAPSHOT",
"description": "Onscreen virtual keyboard for Angular ≥ 2 (https://angular.io/) using Material 2 (https://material.angular.io/).",
"main": "./dist/bundles/core.umd.js",
"module": "./dist/@ngx-material-keyboard/core.es5.js",
"es2015": "./dist/@ngx-material-keyboard/core.js",
"typings": "./dist/core.d.ts",
"scripts": {
"build": "ng-packagr -p ./ng-package.json",
"build:docs": "compodoc ./src -p ./tsconfig.json --disableCoverage --disablePrivateOrInternalSupport --theme readthedocs --output ./docs",
"start:docs": "compodoc ./src -p ./tsconfig.json --disableCoverage --disablePrivateOrInternalSupport --theme readthedocs --output ./docs --serve --open --watch --port 4191",
"lint": "npm run lint:ts && npm run lint:sass",
"lint:ts": "tslint \"./src/**/*.ts\" --type-check --config ./tslint.json --project ./tsconfig.json",
"lint:sass": "sass-lint --config ./.sass-lint.yml \"./src/**/*.scss\" --verbose -no-exit"
},
"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#readme",
"peerDependencies": {
"@angular/animations": "^4.0.0",
"@angular/cdk": "2.0.0-beta.8",
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/material": "2.0.0-beta.8",
"rxjs": "^5.4.2"
},
"devDependencies": {
"@angular/animations": "^4.0.0",
"@angular/cdk": "2.0.0-beta.8",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/material": "2.0.0-beta.8",
"@angular/platform-browser": "^4.0.0",
"@compodoc/compodoc": "^1.0.0-beta.13",
"codelyzer": "^3.1.2",
"ng-packagr": "^1.0.0-pre.10",
"rxjs": "^5.4.2",
"sass-lint": "^1.10.2",
"tslint": "^5.5.0",
"tslint-microsoft-contrib": "^5.0.1",
"zone.js": "^0.8.14"
}
}