forked from by-pinja/ng-virtual-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.3 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
{
"name": "@protacon/ng-virtual-keyboard",
"version": "0.6.0",
"description": "Virtual Keyboard for Angular applications",
"main": "dist/ng-virtual-keyboard.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "NODE_ENV=dev webpack-dev-server --progress --profile --port 4200 --host 0.0.0.0 --content-base app --config app/webpack.config --open",
"lint": "tslint 'src/**/*.ts' 'app/**/*.ts'",
"clean": "rimraf dist",
"build": "npm-run-all --serial clean build:ngc build:umd build:app build:gh-pages",
"build:ngc": "ngc -p tsconfig.ngc.json",
"build:umd": "NODE_ENV=prod webpack --progress --profile",
"build:app": "NODE_ENV=prod webpack --progress --profile --config app/webpack.config",
"build:gh-pages": "cp app/index.html docs && cp app/favicon.png docs && cp -r app/build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/protacon/ng-virtual-keyboard.git"
},
"keywords": [
"Angular"
],
"author": "Protacon",
"license": "MIT",
"bugs": {
"url": "https://github.com/protacon/ng-virtual-keyboard/issues"
},
"homepage": "https://github.com/protacon/ng-virtual-keyboard#readme",
"prefer-stable": true,
"dependencies": {
"@angular/animations": "^4.0.2",
"@angular/flex-layout": "^2.0.0-beta.7",
"@angular/material": "^2.0.0-beta.3",
"hammerjs": "^2.0.8"
},
"devDependencies": {
"@angular/common": "^4.0.2",
"@angular/compiler": "^4.0.2",
"@angular/compiler-cli": "^4.0.2",
"@angular/core": "^4.0.2",
"@angular/forms": "^4.0.2",
"@angular/http": "^4.0.2",
"@angular/platform-browser": "^4.0.2",
"@angular/platform-browser-dynamic": "^4.0.2",
"@angular/router": "^4.0.2",
"@types/node": "^7.0.12",
"angular2-template-loader": "^0.6.0",
"codelyzer": "^2.0.1",
"core-js": "^2.4.1",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"node-sass": "^4.5.2",
"npm-run-all": "^4.0.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"rxjs": "^5.3.0",
"sass-loader": "^6.0.3",
"strip-loader": "^0.1.2",
"style-loader": "^0.16.1",
"ts-loader": "^2.0.3",
"tslint": "^5.0.0",
"typescript": "^2.2.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"zone.js": "^0.8.5"
}
}