-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.69 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
{
"name": "metry-angular2-sdk",
"version": "1.1.3",
"description": "Metry Angular2 SDK",
"main": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist/*",
"prestart": "npm run clean",
"start": "npm run build:test && (npm run watch:ts & npm run watch:test)",
"prerelease": "npm run clean",
"release": "tsc",
"build:test": "tsc -p tsconfig.testing.json",
"pretest": "npm run build:test",
"test": "karma start karma.conf.js --single-run",
"watch:ts": "tsc -w -p tsconfig.testing.json",
"watch:test": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metry-io/metry-angular2-sdk.git"
},
"keywords": [
"metry",
"angular",
"typescript",
"sdk",
"api",
"energy",
"data"
],
"author": "Torsten Freyhall <torsten.freyhall@metry.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/metry-io/metry-angular2-sdk/issues"
},
"homepage": "https://github.com/metry-io/metry-angular2-sdk#readme",
"dependencies": {
"@angular/common": "^2.1.2",
"@angular/core": "~2.1.2",
"@angular/http": "~2.1.2"
},
"devDependencies": {
"@angular/compiler": "^2.1.2",
"@angular/platform-browser": "^2.1.2",
"@angular/platform-browser-dynamic": "^2.1.2",
"@types/jasmine": "^2.5.37",
"core-js": "^2.4.1",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.0.0-beta.12",
"systemjs": "^0.19.40",
"typescript": "^2.0.6",
"zone.js": "^0.6.26"
}
}