forked from manekinekko/angular-web-bluetooth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) Β· 1.75 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) Β· 1.75 KB
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
{
"name": "@manekinekko/angular-web-bluetooth",
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "Wassim Chegham",
"email": "github@wassimchegham.com"
},
"engines": {
"node": ">= 5.4.1"
},
"contributors": [],
"repository": {
"type": "git",
"url": "git@github.com:manekinekko/angular-web-bluetooth.git"
},
"homepage": "https://github.com/manekinekko/angular-web-bluetooth",
"bugs": "https://github.com/manekinekko/angular-web-bluetooth/issues",
"description": "A Web Bluetooth (Bluetooth Low Energy) module for angular (v2+)",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build:aot": "ngc -p tsconfig.json",
"build:jit": "tsc -p tsconfig.json",
"build": "npm run clean && npm run build:aot"
},
"types": "dist/index.d.ts",
"private": false,
"keywords": [
"angular",
"angular2",
"bluetooth",
"low",
"energy",
"web",
"ble",
"iot",
"sensor",
"accelerometer",
"luxometer",
"transmitter",
"magnetometer",
"ir",
"nfc",
"thermometer",
"puckjs",
"sensortag"
],
"dependencies": {
"@angular/common": "^2.4.1",
"@angular/compiler": "^2.4.1",
"@angular/core": "^2.4.1",
"@angular/platform-browser": "^2.4.1",
"core-js": "2.4.1",
"rimraf": "^2.5.4",
"rxjs": "5.0.2",
"typescript": "2.0.10",
"zone.js": "0.7.4"
},
"devDependencies": {
"@angular/compiler-cli": "^2.4.1",
"@angular/platform-server": "^2.4.1",
"@types/jasmine": "2.2.30",
"@types/node": "6.0.54"
}
}