This repository was archived by the owner on Oct 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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": "angular-iot",
"version": "0.4.0",
"description": "IoT support for Angular",
"scripts": {
"build": "rimraf dist compiled && ngc",
"test": "tslint src/**/*.ts && npm run build && npm run example:build",
"example:build": "rimraf examples/dist examples/aot && ngc -p examples",
"example:run": "node examples/dist/examples/blink",
"example:chip": "node examples/dist/examples/blink-chip",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urish/angular-iot.git"
},
"keywords": [
"angular",
"iot",
"arduino",
"robotics",
"raspberry pi"
],
"author": "Uri Shaked",
"license": "MIT",
"bugs": {
"url": "https://github.com/urish/angular-iot/issues"
},
"homepage": "https://github.com/urish/angular-iot#readme",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"devDependencies": {
"@angular/common": "2.1.0",
"@angular/compiler": "2.1.0",
"@angular/compiler-cli": "2.1.0",
"@angular/core": "2.1.0",
"@angular/http": "2.1.0",
"@angular/platform-browser": "2.1.0",
"@angular/platform-server": "2.1.0",
"@types/johnny-five": "0.0.29",
"@types/node": "6.0.45",
"angular2-universal": "2.1.0-rc.1",
"angular2-universal-polyfills": "2.0.11",
"es6-shim": "0.35.1",
"johnny-five": "0.10.1",
"preboot": "2.1.2",
"reflect-metadata": "0.1.3",
"rimraf": "2.5.2",
"rxjs": "5.0.0-beta.12",
"tslint": "3.15.1",
"typescript": "2.0.3",
"zone.js": "0.6.25"
},
"peerDependencies": {
"@angular/core": "^2.0.0",
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/platform-server": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"johnny-five": "^0.10.0"
}
}